2023-08-02 06:05:33 +00:00
|
|
|
package bgammon
|
|
|
|
|
|
|
|
type Client interface {
|
2024-09-05 18:38:38 +00:00
|
|
|
Address() string
|
2023-08-27 21:10:18 +00:00
|
|
|
HandleReadWrite()
|
2023-08-27 06:44:41 +00:00
|
|
|
Write(message []byte)
|
|
|
|
Terminate(reason string)
|
|
|
|
Terminated() bool
|
2023-08-02 06:05:33 +00:00
|
|
|
}
|