chore(clients): regenerate Go/Java bindings and Rust vendored proto for the statuses contract comments
This commit is contained in:
@@ -2697,6 +2697,9 @@ func (x *Write2Command) GetUserId() int32 {
|
||||
return 0
|
||||
}
|
||||
|
||||
// The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
// outcome when it arrives within the worker's bounded wait — see
|
||||
// MxCommandReply.statuses.
|
||||
type WriteSecuredCommand struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
ServerHandle int32 `protobuf:"varint,1,opt,name=server_handle,json=serverHandle,proto3" json:"server_handle,omitempty"`
|
||||
@@ -2775,6 +2778,9 @@ func (x *WriteSecuredCommand) GetValue() *MxValue {
|
||||
return nil
|
||||
}
|
||||
|
||||
// The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
// outcome when it arrives within the worker's bounded wait — see
|
||||
// MxCommandReply.statuses.
|
||||
type WriteSecured2Command struct {
|
||||
state protoimpl.MessageState `protogen:"open.v1"`
|
||||
ServerHandle int32 `protobuf:"varint,1,opt,name=server_handle,json=serverHandle,proto3" json:"server_handle,omitempty"`
|
||||
@@ -4575,8 +4581,20 @@ type MxCommandReply struct {
|
||||
// HRESULT captured from MXAccess or a COM exception. This remains separate
|
||||
// from gateway protocol status so MXAccess parity details are not hidden by
|
||||
// transport failures.
|
||||
Hresult *int32 `protobuf:"varint,5,opt,name=hresult,proto3,oneof" json:"hresult,omitempty"`
|
||||
ReturnValue *MxValue `protobuf:"bytes,6,opt,name=return_value,json=returnValue,proto3" json:"return_value,omitempty"`
|
||||
Hresult *int32 `protobuf:"varint,5,opt,name=hresult,proto3,oneof" json:"hresult,omitempty"`
|
||||
ReturnValue *MxValue `protobuf:"bytes,6,opt,name=return_value,json=returnValue,proto3" json:"return_value,omitempty"`
|
||||
// Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
// replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
// MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
// MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
// statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
// while protocol_status/hresult still describe command acceptance only.
|
||||
// Empty statuses on a write reply means the completion did not arrive
|
||||
// within the window — the write is unconfirmed, not failed. Correlation is
|
||||
// best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
// no transaction id, so concurrent writes to the same item within the
|
||||
// window can swap rows. The OnWriteComplete event still flows on the event
|
||||
// stream unchanged. Other command kinds leave this field as before.
|
||||
Statuses []*MxStatusProxy `protobuf:"bytes,7,rep,name=statuses,proto3" json:"statuses,omitempty"`
|
||||
DiagnosticMessage string `protobuf:"bytes,8,opt,name=diagnostic_message,json=diagnosticMessage,proto3" json:"diagnostic_message,omitempty"`
|
||||
// Types that are valid to be assigned to Payload:
|
||||
|
||||
@@ -26028,6 +26028,12 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxValueOrBuilder getValueOrBuilder();
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
* outcome when it arrives within the worker's bounded wait — see
|
||||
* MxCommandReply.statuses.
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code mxaccess_gateway.v1.WriteSecuredCommand}
|
||||
*/
|
||||
public static final class WriteSecuredCommand extends
|
||||
@@ -26357,6 +26363,12 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return builder;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
* outcome when it arrives within the worker's bounded wait — see
|
||||
* MxCommandReply.statuses.
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code mxaccess_gateway.v1.WriteSecuredCommand}
|
||||
*/
|
||||
public static final class Builder extends
|
||||
@@ -26976,6 +26988,12 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxValueOrBuilder getTimestampValueOrBuilder();
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
* outcome when it arrives within the worker's bounded wait — see
|
||||
* MxCommandReply.statuses.
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code mxaccess_gateway.v1.WriteSecured2Command}
|
||||
*/
|
||||
public static final class WriteSecured2Command extends
|
||||
@@ -27347,6 +27365,12 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return builder;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
* outcome when it arrives within the worker's bounded wait — see
|
||||
* MxCommandReply.statuses.
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code mxaccess_gateway.v1.WriteSecured2Command}
|
||||
*/
|
||||
public static final class Builder extends
|
||||
@@ -50488,24 +50512,99 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxValueOrBuilder getReturnValueOrBuilder();
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy>
|
||||
getStatusesList();
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy getStatuses(int index);
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
int getStatusesCount();
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
java.util.List<? extends mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder>
|
||||
getStatusesOrBuilderList();
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder getStatusesOrBuilder(
|
||||
@@ -51233,6 +51332,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
@SuppressWarnings("serial")
|
||||
private java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy> statuses_;
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -51240,6 +51354,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return statuses_;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -51248,6 +51377,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return statuses_;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -51255,6 +51399,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return statuses_.size();
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -51262,6 +51421,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return statuses_.get(index);
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -53981,6 +54155,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy, mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.Builder, mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder> statusesBuilder_;
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy> getStatusesList() {
|
||||
@@ -53991,6 +54180,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public int getStatusesCount() {
|
||||
@@ -54001,6 +54205,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy getStatuses(int index) {
|
||||
@@ -54011,6 +54230,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder setStatuses(
|
||||
@@ -54028,6 +54262,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder setStatuses(
|
||||
@@ -54042,6 +54291,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder addStatuses(mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy value) {
|
||||
@@ -54058,6 +54322,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder addStatuses(
|
||||
@@ -54075,6 +54354,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder addStatuses(
|
||||
@@ -54089,6 +54383,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder addStatuses(
|
||||
@@ -54103,6 +54412,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder addAllStatuses(
|
||||
@@ -54118,6 +54442,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder clearStatuses() {
|
||||
@@ -54131,6 +54470,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public Builder removeStatuses(int index) {
|
||||
@@ -54144,6 +54498,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.Builder getStatusesBuilder(
|
||||
@@ -54151,6 +54520,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
return internalGetStatusesFieldBuilder().getBuilder(index);
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder getStatusesOrBuilder(
|
||||
@@ -54161,6 +54545,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public java.util.List<? extends mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder>
|
||||
@@ -54172,6 +54571,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.Builder addStatusesBuilder() {
|
||||
@@ -54179,6 +54593,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.getDefaultInstance());
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.Builder addStatusesBuilder(
|
||||
@@ -54187,6 +54616,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
||||
index, mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.getDefaultInstance());
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
* replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
* MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
* MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
* statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
* while protocol_status/hresult still describe command acceptance only.
|
||||
* Empty statuses on a write reply means the completion did not arrive
|
||||
* within the window — the write is unconfirmed, not failed. Correlation is
|
||||
* best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
* no transaction id, so concurrent writes to the same item within the
|
||||
* window can swap rows. The OnWriteComplete event still flows on the event
|
||||
* stream unchanged. Other command kinds leave this field as before.
|
||||
* </pre>
|
||||
*
|
||||
* <code>repeated .mxaccess_gateway.v1.MxStatusProxy statuses = 7;</code>
|
||||
*/
|
||||
public java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy.Builder>
|
||||
|
||||
@@ -256,6 +256,9 @@ message Write2Command {
|
||||
int32 user_id = 5;
|
||||
}
|
||||
|
||||
// The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
// outcome when it arrives within the worker's bounded wait — see
|
||||
// MxCommandReply.statuses.
|
||||
message WriteSecuredCommand {
|
||||
int32 server_handle = 1;
|
||||
int32 item_handle = 2;
|
||||
@@ -266,6 +269,9 @@ message WriteSecuredCommand {
|
||||
MxValue value = 5;
|
||||
}
|
||||
|
||||
// The unary reply's statuses field carries the correlated OnWriteComplete
|
||||
// outcome when it arrives within the worker's bounded wait — see
|
||||
// MxCommandReply.statuses.
|
||||
message WriteSecured2Command {
|
||||
int32 server_handle = 1;
|
||||
int32 item_handle = 2;
|
||||
@@ -525,6 +531,18 @@ message MxCommandReply {
|
||||
// transport failures.
|
||||
optional int32 hresult = 5;
|
||||
MxValue return_value = 6;
|
||||
// Correlated per-item outcome rows. For WRITE_SECURED / WRITE_SECURED2
|
||||
// replies the worker holds the reply for a bounded window (default 1.5 s,
|
||||
// MXGATEWAY_WORKER_WRITE_COMPLETION_WAIT_MS) waiting for the matching
|
||||
// MXAccess OnWriteComplete callback and copies its status rows here, so
|
||||
// statuses[0] carries the real MXAccess commit outcome (success OR failure)
|
||||
// while protocol_status/hresult still describe command acceptance only.
|
||||
// Empty statuses on a write reply means the completion did not arrive
|
||||
// within the window — the write is unconfirmed, not failed. Correlation is
|
||||
// best-effort per (server_handle, item_handle): MXAccess's callback carries
|
||||
// no transaction id, so concurrent writes to the same item within the
|
||||
// window can swap rows. The OnWriteComplete event still flows on the event
|
||||
// stream unchanged. Other command kinds leave this field as before.
|
||||
repeated MxStatusProxy statuses = 7;
|
||||
string diagnostic_message = 8;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user