2026-04-03 17:41:44 +09:00
|
|
|
package transport
|
|
|
|
|
|
2026-04-04 19:54:46 +09:00
|
|
|
import (
|
|
|
|
|
"io"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
2026-04-03 17:41:44 +09:00
|
|
|
|
|
|
|
|
type Transport interface {
|
|
|
|
|
Send(data []byte) error
|
2026-04-04 19:54:46 +09:00
|
|
|
SetReadTimeout(timeout time.Duration)
|
|
|
|
|
Reader() io.Reader
|
2026-04-03 17:41:44 +09:00
|
|
|
Close() error
|
|
|
|
|
}
|