StreamDecoderFactory produces stream decoder instances.
| 47 | |
| 48 | // StreamDecoderFactory produces stream decoder instances. |
| 49 | type StreamDecoderFactory interface { |
| 50 | |
| 51 | // New StreamDecoderInterface |
| 52 | New(conversation *ConversationInfo) StreamDecoderInterface |
| 53 | } |
| 54 | |
| 55 | // StreamDecoderInterface is the interface for processing a bi-directional network connection. |
| 56 | type StreamDecoderInterface interface { |
no outgoing calls
no test coverage detected