466467468469470471472473474475476
} } // Send the message. try { transport.oneway(command); stateTracker.trackBack(command); } catch (IOException e) { // If the command was not tracked.. we will retry in // this method
8384858687888990919293
if (trace) { LOG.trace("Sending: \n" + command); } Transport n = next; if (n!=null) { n.oneway(command); } } public FrameTranslator getFrameTranslator() { return frameTranslator;
115116117118119120121122123124125
if (trace) { TRACE.trace("Sending: \n" + command); } Transport n = next; if (n != null) { n.oneway(command); } } public X509Certificate[] getPeerCertificates() { if (next instanceof SslTransport) {
93949596979899100101102103
if (trace) { TRACE.trace("Sending: \n" + command); } Transport n = next; if (n != null) { n.oneway(command); } } } @Override
635636637638639640641642643644645
8990919293949596979899
if (trace) { TRACE.trace("Sending: \n" + command); } Transport n = next; if (n != null) { n.oneway(command); } } public boolean isTrace() { return trace;
639640641642643644645646647648649
117118119120121122123124125126127
if (trace) { TRACE_BYTES.trace("Sending: \n{}", command); } Transport n = next; if (n != null) { n.oneway(command); } } public X509Certificate[] getPeerCertificates() { if (next instanceof SslTransport) {
9899100101102103104105106107108
8788899091929394959697