NetworkEntity represent low-level network instance
| 9 | |
| 10 | // NetworkEntity represent low-level network instance |
| 11 | type NetworkEntity interface { |
| 12 | Push(route string, v interface{}) error |
| 13 | ResponseMID(ctx context.Context, mid uint, v interface{}, isError ...bool) error |
| 14 | Close() error |
| 15 | Kick(ctx context.Context) error |
| 16 | RemoteAddr() net.Addr |
| 17 | SendRequest(ctx context.Context, serverID, route string, v interface{}) (*protos.Response, error) |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected