Uses of Class
org.jgroups.protocols.PingData
-
Packages that use PingData Package Description org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.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 PingData in org.jgroups.protocols
Fields in org.jgroups.protocols with type parameters of type PingData Modifier and Type Field Description protected static java.util.Map<java.lang.String,java.util.List<PingData>>
LOCAL_PING. discovery
Map of cluster names and address-protocol mappings.protected java.util.function.Consumer<PingData>
Discovery. discovery_rsp_callback
protected java.util.function.Consumer<PingData>
MERGE3. discovery_rsp_cb
protected static java.util.function.Function<java.lang.String,java.util.List<PingData>>
LOCAL_PING. FUNC
Methods in org.jgroups.protocols that return PingData Modifier and Type Method Description PingData
PingData. coord(boolean c)
protected static PingData
Discovery. deserialize(byte[] data)
PingData
PingData. mbrs(java.util.Collection<? extends Address> mbrs)
protected PingData
Discovery. readPingData(byte[] buffer, int offset, int length)
PingData
PingData. server(boolean c)
Methods in org.jgroups.protocols that return types with arguments of type PingData Modifier and Type Method Description java.util.function.Supplier<? extends PingData>
PingData. create()
static java.util.List<PingData>
SHARED_LOOPBACK. getDiscoveryResponsesFor(java.lang.String cluster_name)
protected java.util.List<PingData>
Discovery. read(java.io.InputStream in)
protected java.util.List<PingData>
FILE_PING. read(java.io.File file)
protected java.util.List<PingData>
FILE_PING. read(java.io.InputStream in)
Methods in org.jgroups.protocols with parameters of type PingData Modifier and Type Method Description protected void
Discovery. addResponse(PingData rsp, boolean overwrite)
protected void
Discovery. handleDiscoveryResponse(PingData data, Address sender)
protected void
JDBC_PING. insert(java.sql.Connection connection, PingData data, java.lang.String clustername, java.lang.String address)
static Buffer
Discovery. marshal(PingData data)
protected void
MERGE3. sendInfoMessage(PingData data)
protected byte[]
Discovery. serializeWithoutView(PingData data)
Creates a byte[] representation of the PingData, but DISCARDING the view it contains.protected void
JDBC_PING. writeToDB(PingData data, java.lang.String clustername, boolean overwrite)
Method parameters in org.jgroups.protocols with type arguments of type PingData Modifier and Type Method Description void
TCPGOSSIP. members(java.util.List<PingData> mbrs)
protected void
Discovery. write(java.util.List<PingData> list, java.io.OutputStream out)
protected void
FILE_PING. write(java.util.List<PingData> list, java.io.OutputStream out)
protected void
FILE_PING. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
JDBC_PING. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
RACKSPACE_PING. write(java.util.List<PingData> list, java.lang.String clustername)
protected void
S3_PING. write(java.util.List<PingData> list, java.lang.String clustername)
Deprecated.protected void
SWIFT_PING. write(java.util.List<PingData> list, java.lang.String clustername)
-
Uses of PingData in org.jgroups.stack
Methods in org.jgroups.stack that return types with arguments of type PingData Modifier and Type Method Description java.util.List<PingData>
GossipData. getPingData()
Methods in org.jgroups.stack with parameters of type PingData Modifier and Type Method Description void
GossipData. addPingData(PingData data)
Method parameters in org.jgroups.stack with type arguments of type PingData Modifier and Type Method Description void
RouterStub.MembersNotification. members(java.util.List<PingData> mbrs)
protected void
RouterStub. notifyResponse(java.lang.String group, java.util.List<PingData> list)
void
GossipData. setPingData(java.util.List<PingData> mbrs)
Constructor parameters in org.jgroups.stack with type arguments of type PingData Constructor Description GossipData(GossipType type, java.lang.String group, Address addr, java.util.List<PingData> ping_data)
GossipData(GossipType type, java.lang.String group, Address addr, java.util.List<PingData> ping_data, PhysicalAddress physical_addr)
-
Uses of PingData in org.jgroups.util
Fields in org.jgroups.util declared as PingData Modifier and Type Field Description protected PingData[]
Responses.PingDataIterator. data
protected PingData[]
Responses. ping_rsps
Methods in org.jgroups.util that return PingData Modifier and Type Method Description PingData
Responses. findResponseFrom(Address mbr)
PingData
Responses.PingDataIterator. next()
Methods in org.jgroups.util that return types with arguments of type PingData Modifier and Type Method Description java.util.Iterator<PingData>
Responses. iterator()
protected java.util.List<PingData>
Responses. toList()
Methods in org.jgroups.util with parameters of type PingData Modifier and Type Method Description protected void
Responses. add(PingData data)
Responses
Responses. addResponse(PingData rsp, boolean overwrite)
protected int
Responses. find(PingData data)
Method parameters in org.jgroups.util with type arguments of type PingData Modifier and Type Method Description static java.lang.String
Util. printPingData(java.util.List<PingData> rsps)
Constructors in org.jgroups.util with parameters of type PingData Constructor Description PingDataIterator(PingData[] data, int end_index)
-