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.bytes.TCByteBuffer;7 import com.tc.net.protocol.TCProtocolException;8 9 /**10 * Parses incoming network data into ProtocolMessages11 */12 interface OOOProtocolMessageParser {13 public OOOProtocolMessage parseMessage(TCByteBuffer[] data) throws TCProtocolException;14 }15