Uses of Interface
org.jgroups.stack.DiagnosticsHandler.ProbeHandler
-
Packages that use DiagnosticsHandler.ProbeHandler Package Description org.jgroups Provides top-level public JGroups classes such as Channel, Message, etc.org.jgroups.blocks Provides building blocks that are layered on top of channels.org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.protocols.pbcast org.jgroups.stack Support for managing protocol stacks.org.jgroups.util Provides useful functionality which cannot be assigned to any particular other package. -
-
Uses of DiagnosticsHandler.ProbeHandler in org.jgroups
Classes in org.jgroups that implement DiagnosticsHandler.ProbeHandler Modifier and Type Class Description class
JChannelProbeHandler
Fields in org.jgroups declared as DiagnosticsHandler.ProbeHandler Modifier and Type Field Description protected DiagnosticsHandler.ProbeHandler
JChannel. probe_handler
-
Uses of DiagnosticsHandler.ProbeHandler in org.jgroups.blocks
Classes in org.jgroups.blocks that implement DiagnosticsHandler.ProbeHandler Modifier and Type Class Description protected class
RequestCorrelator.MyProbeHandler
-
Uses of DiagnosticsHandler.ProbeHandler in org.jgroups.protocols
Classes in org.jgroups.protocols that implement DiagnosticsHandler.ProbeHandler 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
BasicTCP
Shared base class for TCP protocolsclass
SHARED_LOOPBACK
Loopback transport shared by all channels within the same VM.class
SimpleTCP
Bare-bones thread-per-connection TCP-based transport.class
TCP
TCP based protocol.class
TCP_NIO2
Protocol using TCP/IP to send and receive messages.class
TP
Generic transport - specific implementations should extend this abstract class.class
TUNNEL
Replacement for UDP.class
UDP
IP multicast transport based on UDP.Fields in org.jgroups.protocols with type parameters of type DiagnosticsHandler.ProbeHandler Modifier and Type Field Description protected java.util.Set<DiagnosticsHandler.ProbeHandler>
SOS. handlers
protected java.util.List<DiagnosticsHandler.ProbeHandler>
TP. preregistered_probe_handlers
Methods in org.jgroups.protocols with parameters of type DiagnosticsHandler.ProbeHandler Modifier and Type Method Description <T extends TP>
TTP. registerProbeHandler(DiagnosticsHandler.ProbeHandler handler)
<T extends TP>
TTP. unregisterProbeHandler(DiagnosticsHandler.ProbeHandler handler)
-
Uses of DiagnosticsHandler.ProbeHandler in org.jgroups.protocols.pbcast
Classes in org.jgroups.protocols.pbcast that implement DiagnosticsHandler.ProbeHandler Modifier and Type Class Description class
GMS
Group membership protocol.class
NAKACK2
Negative AcKnowledgement layer (NAKs). -
Uses of DiagnosticsHandler.ProbeHandler in org.jgroups.stack
Classes in org.jgroups.stack that implement DiagnosticsHandler.ProbeHandler Modifier and Type Class Description class
NonReflectiveProbeHandler
ADiagnosticsHandler.ProbeHandler
that does not use reflection.Fields in org.jgroups.stack declared as DiagnosticsHandler.ProbeHandler Modifier and Type Field Description protected DiagnosticsHandler.ProbeHandler
ProtocolStack. props_handler
Fields in org.jgroups.stack with type parameters of type DiagnosticsHandler.ProbeHandler Modifier and Type Field Description protected java.util.Set<DiagnosticsHandler.ProbeHandler>
DiagnosticsHandler. handlers
Methods in org.jgroups.stack that return types with arguments of type DiagnosticsHandler.ProbeHandler Modifier and Type Method Description java.util.Set<DiagnosticsHandler.ProbeHandler>
DiagnosticsHandler. getProbeHandlers()
Methods in org.jgroups.stack with parameters of type DiagnosticsHandler.ProbeHandler Modifier and Type Method Description void
DiagnosticsHandler. registerProbeHandler(DiagnosticsHandler.ProbeHandler handler)
void
DiagnosticsHandler. unregisterProbeHandler(DiagnosticsHandler.ProbeHandler handler)
-
Uses of DiagnosticsHandler.ProbeHandler in org.jgroups.util
Classes in org.jgroups.util that implement DiagnosticsHandler.ProbeHandler Modifier and Type Class Description class
Profiler
WrapsAverageMinMax
and provides an impl ofDiagnosticsHandler.ProbeHandler
.
-