inMemoryMessageQueue is the default MessageQueue backed by a buffered channel.
| 37 | |
| 38 | // inMemoryMessageQueue is the default MessageQueue backed by a buffered channel. |
| 39 | type inMemoryMessageQueue struct { |
| 40 | ch chan QueuedMessage |
| 41 | } |
| 42 | |
| 43 | const ( |
| 44 | // defaultSteerQueueCapacity is the buffer size for the default in-memory steer queue. |
nothing calls this directly
no outgoing calls
no test coverage detected