Class PeersResponse
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportResponse
-
- org.elasticsearch.cluster.coordination.PeersResponse
-
- All Implemented Interfaces:
Streamable,Writeable
public class PeersResponse extends TransportResponse
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportResponse
TransportResponse.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Constructor Summary
Constructors Constructor Description PeersResponse(java.util.Optional<DiscoveryNode> masterNode, java.util.List<DiscoveryNode> knownPeers, long term)PeersResponse(StreamInput in)
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.List<DiscoveryNode>getKnownPeers()java.util.Optional<DiscoveryNode>getMasterNode()longgetTerm()inthashCode()java.lang.StringtoString()voidwriteTo(StreamOutput out)Write this object's fields to a StreamOutput.-
Methods inherited from class org.elasticsearch.transport.TransportMessage
readFrom, remoteAddress, remoteAddress
-
-
-
-
Constructor Detail
-
PeersResponse
public PeersResponse(java.util.Optional<DiscoveryNode> masterNode, java.util.List<DiscoveryNode> knownPeers, long term)
-
PeersResponse
public PeersResponse(StreamInput in) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:StreamableWrite this object's fields to a StreamOutput.- Specified by:
writeToin interfaceStreamable- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classTransportMessage- Throws:
java.io.IOException
-
getMasterNode
public java.util.Optional<DiscoveryNode> getMasterNode()
- Returns:
- the node that is currently leading, according to the responding node.
-
getKnownPeers
public java.util.List<DiscoveryNode> getKnownPeers()
- Returns:
- the collection of known peers of the responding node, or an empty collection if the responding node believes there is currently a leader.
-
getTerm
public long getTerm()
- Returns:
- the current term of the responding node. If the responding node is the leader then this is the term in which it is currently leading.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-