Package org.jgroups.protocols
Class DISCARD
java.lang.Object
org.jgroups.stack.Protocol
org.jgroups.protocols.DISCARD
- All Implemented Interfaces:
Lifecycle
Discards up or down messages based on a percentage; e.g., setting property 'up' to 0.1 causes 10%
of all up messages to be discarded. Setting 'down' or 'up' to 0 causes no loss, whereas 1 discards
all messages (not very useful).
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected classprivate static class -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanprotected DISCARD.DiscardDialogprotected doubleprotected intprotected intprotected booleanprotected final Collection<Address> protected intprotected intprotected doubleprotected booleanFields inherited from class org.jgroups.stack.Protocol
after_creation_hook, down_prot, ergonomics, id, local_addr, log, policies, stack, stats, up_prot -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaddIgnoredMembers(Address... senders) addIgnoreMember(Address sender) Messages from this sender will get droppedbooleandiscardAll(boolean discard_all) An event is to be sent down the stack.A message is sent down the stack.intdropDownMulticasts(int drop_down_multicasts) dropDownUnicasts(int drop_down_unicasts) Drop the next N unicasts down the stackbooleanexcludeItself(boolean excludeItself) doubleintdoubleremoveIgnoredMember(Address member) voidsetAddress(Address localAddress) setDownDiscardRate(double down) setUpDiscardRate(double up) protected booleanshouldDropUpMessage(Message msg, Address sender) Checks if a message should be passed up, or notvoidstart()This method is called on aJChannel.connect(String); starts work.voidstartGui()voidstop()Called on aJChannel.disconnect(); stops work (e.g.voidstopGui()A single message was received.voidup(MessageBatch batch) Sends up a multiple messages in aMessageBatch.Methods inherited from class org.jgroups.stack.Protocol
accept, addPolicy, addr, addr, afterCreationHook, destroy, down, enableStats, getAddress, getComponents, getDownProtocol, getDownServices, getId, getIdsAbove, getLevel, getLog, getName, getPolicies, getProtocolStack, getSocketFactory, getThreadFactory, getTransport, getUpProtocol, getUpServices, getValue, init, isErgonomics, level, parse, policies, providedDownServices, providedUpServices, removePolicy, requiredDownServices, requiredUpServices, resetStatistics, setDownProtocol, setErgonomics, setId, setLevel, setPolicies, setProtocolStack, setSocketFactory, setUpProtocol, setValue, statsEnabled, toString, up
-
Field Details
-
up
protected double up -
down
protected double down -
excludeItself
protected boolean excludeItself -
num_down
protected int num_down -
num_up
protected int num_up -
ignoredMembers
-
members
-
discard_all
protected boolean discard_all -
drop_down_unicasts
protected int drop_down_unicasts -
drop_down_multicasts
protected int drop_down_multicasts -
discard_dialog
-
use_gui
protected boolean use_gui
-
-
Constructor Details
-
DISCARD
public DISCARD()
-
-
Method Details
-
getIgnoredMembers
-
discardAll
public boolean discardAll() -
discardAll
-
excludeItself
public boolean excludeItself() -
setAddress
- Overrides:
setAddressin classProtocol
-
excludeItself
-
getUpDiscardRate
public double getUpDiscardRate() -
setUpDiscardRate
-
getDownDiscardRate
public double getDownDiscardRate() -
setDownDiscardRate
-
getDropDownUnicasts
public int getDropDownUnicasts() -
dropDownUnicasts
Drop the next N unicasts down the stack- Parameters:
drop_down_unicasts-
-
dropDownMulticasts
public int dropDownMulticasts() -
dropDownMulticasts
-
addIgnoreMember
Messages from this sender will get dropped -
addIgnoredMembers
-
removeIgnoredMember
-
resetIgnoredMembers
-
startGui
public void startGui() -
stopGui
public void stopGui() -
start
Description copied from class:ProtocolThis method is called on aJChannel.connect(String); starts work. Protocols are connected ready to receive events. Will be called from bottom to top. -
stop
public void stop()Description copied from class:ProtocolCalled on aJChannel.disconnect(); stops work (e.g. by closing multicast socket). Will be called from top to bottom. -
up
Description copied from class:ProtocolA single message was received. Protocols may examine the message and do something (e.g. add a header) with it before passing it up. -
up
Description copied from class:ProtocolSends up a multiple messages in aMessageBatch. The sender of the batch is always the same, and so is the destination (null == multicast messages). Messages in a batch can be OOB messages, regular messages, or mixed messages, although the transport itself will create initial MessageBatches that contain only either OOB or regular messages.The default processing below sends messages up the stack individually, based on a matching criteria (calling
Protocol.accept(Message)), and - if true - callsProtocol.up(org.jgroups.Event)for that message and removes the message. If the batch is not empty, it is passed up, or else it is dropped.Subclasses should check if there are any messages destined for them (e.g. using
MessageBatch.iterator(Predicate)), then possibly remove and process them and finally pass the batch up to the next protocol. Protocols can also modify messages in place, e.g. ENCRYPT could decrypt all encrypted messages in the batch, not remove them, and pass the batch up when done. -
down
Description copied from class:ProtocolAn event is to be sent down the stack. A protocol may want to examine its type and perform some action on it, depending on the event's type. If the event is a message MSG, then the protocol may need to add a header to it (or do nothing at all) before sending it down the stack usingdown_prot.down(). -
down
Description copied from class:ProtocolA message is sent down the stack. Protocols may examine the message and do something (e.g. add a header) with it, before passing it down. -
shouldDropUpMessage
Checks if a message should be passed up, or not -
resetStats
public void resetStats()- Overrides:
resetStatsin classProtocol
-