HandleStreams receives incoming streams using the given handler.
(context.Context, func(*ServerStream))
| 654 | type ServerTransport interface { |
| 655 | // HandleStreams receives incoming streams using the given handler. |
| 656 | HandleStreams(context.Context, func(*ServerStream)) |
| 657 | |
| 658 | // Close tears down the transport. Once it is called, the transport |
| 659 | // should not be accessed any more. All the pending streams and their |
no outgoing calls