1 18 package org.apache.activemq.transport.reliable; 19 20 21 import java.io.IOException ; 22 23 28 public interface ReplayStrategy { 29 30 39 boolean onDroppedPackets(ReliableTransport transport, int expectedCounter, int actualCounter, int nextAvailableCounter) throws IOException ; 40 41 void onReceivedPacket(ReliableTransport transport, long expectedCounter); 42 43 } 44 45 | Popular Tags |