public TimeoutCallback(ConnectionI connection) { _connection = connection; }
internal bool sent(ConnectionI connection, bool notify) { isSent = true; // The message is sent. if(@out != null) { @out.sent(notify); // true = notify the waiting thread that the request was sent. return false; } else if(outAsync != null) { sentCallback = outAsync.sent__(connection); return sentCallback != null; } else { return false; } }