com.hedera.hashgraph.sdk.proto.ConsensusMessageChunkInfoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: consensus_submit_message.proto
package com.hedera.hashgraph.sdk.proto;
public interface ConsensusMessageChunkInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ConsensusMessageChunkInfo)
com.google.protobuf.MessageLiteOrBuilder {
/**
*
**
* TransactionID of the first chunk, gets copied to every subsequent chunk in a fragmented message.
*
*
* .proto.TransactionID initialTransactionID = 1;
* @return Whether the initialTransactionID field is set.
*/
boolean hasInitialTransactionID();
/**
*
**
* TransactionID of the first chunk, gets copied to every subsequent chunk in a fragmented message.
*
*
* .proto.TransactionID initialTransactionID = 1;
* @return The initialTransactionID.
*/
com.hedera.hashgraph.sdk.proto.TransactionID getInitialTransactionID();
/**
*
**
* The total number of chunks in the message.
*
*
* int32 total = 2;
* @return The total.
*/
int getTotal();
/**
*
**
* The sequence number (from 1 to total) of the current chunk in the message.
*
*
* int32 number = 3;
* @return The number.
*/
int getNumber();
}