| java.lang.Object org.jgroups.stack.AckMcastReceiverWindow
AckMcastReceiverWindow | public class AckMcastReceiverWindow (Code) | | Keeps track of messages received from various senders. Acks each message received and checks whether
it was already delivered. If yes, the message is discarded, otherwise it is delivered (passed up).
The messages contain sequence numbers of old messages to be deleted, those are removed from the
message table.
author: Bela Ban June 17 1999 |
Method Summary | |
public boolean | add(Object sender, long seqno) Records the sender/seqno pair in the message table
Parameters: sender - The sender of the message Parameters: seqno - The sequence number associated with the message boolean If false, message is already present. | public static void | main(String[] args) | public void | remove(Object sender, Vector seqnos) | public void | removeAll() | public void | reset() | public long | size() | public void | suspect(Object sender) | public String | toString() |
log | final protected static Log log(Code) | | |
add | public boolean add(Object sender, long seqno)(Code) | | Records the sender/seqno pair in the message table
Parameters: sender - The sender of the message Parameters: seqno - The sequence number associated with the message boolean If false, message is already present. Otherwise true. |
removeAll | public void removeAll()(Code) | | |
reset | public void reset()(Code) | | |
|
|