1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.net.protocol.delivery; 5 6 import com.tc.net.protocol.TCNetworkMessage; 7 8 /** 9 * Message at the OAOO protocol level 10 */ 11 public interface OOOProtocolMessage extends TCNetworkMessage { 12 13 public long getAckSequence(); 14 15 public long getSent(); 16 17 public boolean isAckRequest(); 18 19 public boolean isSend(); 20 }