| 36 | ) |
| 37 | |
| 38 | type Configurable interface { |
| 39 | // IsEnabled returns true when the receiver is configured. |
| 40 | IsEnabled() bool |
| 41 | |
| 42 | // LogConfig logs the receiver's configuration. |
| 43 | // |
| 44 | // The behavior of this method is undefined when `IsEnabled` returns false. |
| 45 | LogConfig(logger *logrus.Entry) |
| 46 | } |
| 47 | |
| 48 | // NetProtocol resolver protocol ENUM( |
| 49 | // tcp+udp // TCP and UDP protocols |
no outgoing calls
no test coverage detected