GetCodec returns codec for given ID or nil.
(codecID string)
| 727 | |
| 728 | // GetCodec returns codec for given ID or nil. |
| 729 | func (m *KV) GetCodec(codecID string) codec.Codec { |
| 730 | return m.codecs[codecID] |
| 731 | } |
| 732 | |
| 733 | // GetListeningPort returns port used for listening for memberlist communication. Useful when BindPort is set to 0. |
| 734 | // This call is only valid after KV service has been started. |
no outgoing calls
no test coverage detected