(T transport, Attributes attributes, int callId)
| 147 | private boolean producingMessages; |
| 148 | |
| 149 | private Inbound(T transport, Attributes attributes, int callId) { |
| 150 | this.transport = transport; |
| 151 | this.attributes = attributes; |
| 152 | this.callId = callId; |
| 153 | } |
| 154 | |
| 155 | @GuardedBy("this") |
| 156 | final void init(Outbound outbound, L listener) { |
nothing calls this directly
no outgoing calls
no test coverage detected