Class StatisticsRequest
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.stat.messages.StatisticsRequest
-
- All Implemented Interfaces:
Serializable,Message
public class StatisticsRequest extends Object implements Message
Request for statistics.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static shortTYPE_CODE-
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.Message
DIRECT_TYPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description StatisticsRequest()Constructor.StatisticsRequest(UUID reqId, StatisticsKeyMessage key, StatisticsType type, AffinityTopologyVersion topVer, Map<String,Long> versions)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortdirectType()Gets message type.bytefieldsCount()Gets fields count.StatisticsKeyMessagekey()voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.UUIDreqId()Request id.AffinityTopologyVersiontopVer()StringtoString()StatisticsTypetype()Map<String,Long>versions()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Field Detail
-
TYPE_CODE
public static final short TYPE_CODE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StatisticsRequest
public StatisticsRequest()
Constructor.
-
StatisticsRequest
public StatisticsRequest(UUID reqId, StatisticsKeyMessage key, StatisticsType type, AffinityTopologyVersion topVer, Map<String,Long> versions)
Constructor.- Parameters:
reqId- Request id.key- Statistics key to get statistics by.type- Required statistics type.topVer- Topology version to get statistics by.versions- Map of statistics version to column name to ensure actual statistics aquired.
-
-
Method Detail
-
reqId
public UUID reqId()
Request id.
-
type
public StatisticsType type()
- Returns:
- Required statistics type.
-
key
public StatisticsKeyMessage key()
- Returns:
- Key for required statitics.
-
topVer
public AffinityTopologyVersion topVer()
- Returns:
- Topology version.
-
writeTo
public boolean writeTo(ByteBuffer buf, MessageWriter writer)
Writes this message to provided byte buffer.
-
readFrom
public boolean readFrom(ByteBuffer buf, MessageReader reader)
Reads this message from provided byte buffer.
-
directType
public short directType()
Gets message type.- Specified by:
directTypein interfaceMessage- Returns:
- Message type.
-
fieldsCount
public byte fieldsCount()
Gets fields count.- Specified by:
fieldsCountin interfaceMessage- Returns:
- Fields count.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceivedin interfaceMessage
-
-