send method
Queues outgoing messages for sending
@param msgs The TT wire protocol messages to enqueue
Implementation
TTGraphConnector send(List<TTMsg> msgs) {
outputQueue.enqueueMany(msgs);
if (isConnected) {
outputQueue.process();
}
return this;
}