Uses of Class
org.jgroups.protocols.BaseBundler
Packages that use BaseBundler
Package
Description
Provides implementations of transport protocols which are
responsible for sending and receiving messages to/from the network.
-
Uses of BaseBundler in org.jgroups.protocols
Subclasses of BaseBundler in org.jgroups.protocolsModifier and TypeClassDescriptionclassBundler implementation which sends message batches (or single messages) as soon as the target destination changes (or max_bundler_size would be exceeded).classBundler implementation which sends message batches (or single messages) as soon as the remove queue is full (or max_bundler_size would be exceeded).classBundler which usesRingBufferto store messages.classBundler which doesn't use locks but relies on CAS.classLockless bundler using a reader thread which is unparked by (exactly one) writer thread.classclassThis bundler uses the same logic asTransferQueueBundlerbut does not allocate memory except for the buffer itself and does not use complex data structures.classThis bundler adds all (unicast or multicast) messages to a queue until max size has been exceeded, but does send messages immediately when no other messages are available.