public interface LogEntryOperationOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getFirst()
public abstract boolean getFirst()
True if this is the first log entry in the operation.
bool first = 3;
Returns | |
---|---|
Type | Description |
boolean | The first. |
getId()
public abstract String getId()
An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
string id = 1;
Returns | |
---|---|
Type | Description |
String | The id. |
getIdBytes()
public abstract ByteString getIdBytes()
An arbitrary operation identifier. Log entries with the same identifier are assumed to be part of the same operation.
string id = 1;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for id. |
getLast()
public abstract boolean getLast()
True if this is the last log entry in the operation.
bool last = 4;
Returns | |
---|---|
Type | Description |
boolean | The last. |
getProducer()
public abstract String getProducer()
An arbitrary producer identifier. The combination of id
and
producer
must be globally unique. Examples for producer
:
"MyDivision.MyBigCompany.com"
, "github.com/MyProject/MyApplication"
.
string producer = 2;
Returns | |
---|---|
Type | Description |
String | The producer. |
getProducerBytes()
public abstract ByteString getProducerBytes()
An arbitrary producer identifier. The combination of id
and
producer
must be globally unique. Examples for producer
:
"MyDivision.MyBigCompany.com"
, "github.com/MyProject/MyApplication"
.
string producer = 2;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for producer. |