Uses of Class
org.jgroups.protocols.TransferQueueBundler
-
Packages that use TransferQueueBundler Package Description org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network. -
-
Uses of TransferQueueBundler in org.jgroups.protocols
Subclasses of TransferQueueBundler in org.jgroups.protocols Modifier and Type Class Description class
AlternatingBundler
Bundler implementation which sends message batches (or single messages) as soon as the target destination changes (or max_bundler_size would be exceeded).
Messages are removed from the main queue one by one and processed as follows:
A B B C C A causes the following sends: A -> {CC} -> {BB} -> A
Note that null is also a valid destination (send-to-all).
JIRA: https://issues.jboss.org/browse/JGRP-2171class
SimplifiedTransferQueueBundler
This bundler uses the same logic asTransferQueueBundler
but does not allocate memory except for the buffer itself and does not use complex data structures.Methods in org.jgroups.protocols that return TransferQueueBundler Modifier and Type Method Description TransferQueueBundler
TransferQueueBundler. removeQueueSize(int size)
TransferQueueBundler
TransferQueueBundler. setDropWhenFull(boolean b)
-