diff --git a/clients/go/internal/generated/mxaccess_gateway.pb.go b/clients/go/internal/generated/mxaccess_gateway.pb.go index d3733d6..2064cc0 100644 --- a/clients/go/internal/generated/mxaccess_gateway.pb.go +++ b/clients/go/internal/generated/mxaccess_gateway.pb.go @@ -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: diff --git a/clients/java/src/main/generated/main/java/mxaccess_gateway/v1/MxaccessGateway.java b/clients/java/src/main/generated/main/java/mxaccess_gateway/v1/MxaccessGateway.java index 7271063..a69750f 100644 --- a/clients/java/src/main/generated/main/java/mxaccess_gateway/v1/MxaccessGateway.java +++ b/clients/java/src/main/generated/main/java/mxaccess_gateway/v1/MxaccessGateway.java @@ -26028,6 +26028,12 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile { mxaccess_gateway.v1.MxaccessGateway.MxValueOrBuilder getValueOrBuilder(); } /** + *
+ * The unary reply's statuses field carries the correlated OnWriteComplete + * outcome when it arrives within the worker's bounded wait — see + * MxCommandReply.statuses. + *+ * * 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; } /** + *
+ * The unary reply's statuses field carries the correlated OnWriteComplete + * outcome when it arrives within the worker's bounded wait — see + * MxCommandReply.statuses. + *+ * * 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(); } /** + *
+ * The unary reply's statuses field carries the correlated OnWriteComplete + * outcome when it arrives within the worker's bounded wait — see + * MxCommandReply.statuses. + *+ * * 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; } /** + *
+ * The unary reply's statuses field carries the correlated OnWriteComplete + * outcome when it arrives within the worker's bounded wait — see + * MxCommandReply.statuses. + *+ * * 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(); /** + *
+ * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
java.util.List+ * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy getStatuses(int index);
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
int getStatusesCount();
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
java.util.List extends mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder>
getStatusesOrBuilderList();
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
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+ * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
@java.lang.Override
@@ -51240,6 +51354,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return statuses_;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
@java.lang.Override
@@ -51248,6 +51377,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return statuses_;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
@java.lang.Override
@@ -51255,6 +51399,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return statuses_.size();
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
@java.lang.Override
@@ -51262,6 +51421,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return statuses_.get(index);
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
@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_;
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public java.util.List+ * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public int getStatusesCount() {
@@ -54001,6 +54205,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
}
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy getStatuses(int index) {
@@ -54011,6 +54230,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
}
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder setStatuses(
@@ -54028,6 +54262,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder setStatuses(
@@ -54042,6 +54291,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder addStatuses(mxaccess_gateway.v1.MxaccessGateway.MxStatusProxy value) {
@@ -54058,6 +54322,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder addStatuses(
@@ -54075,6 +54354,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder addStatuses(
@@ -54089,6 +54383,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder addStatuses(
@@ -54103,6 +54412,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder addAllStatuses(
@@ -54118,6 +54442,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder clearStatuses() {
@@ -54131,6 +54470,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public Builder removeStatuses(int index) {
@@ -54144,6 +54498,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
return this;
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
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);
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder getStatusesOrBuilder(
@@ -54161,6 +54545,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
}
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public java.util.List extends mxaccess_gateway.v1.MxaccessGateway.MxStatusProxyOrBuilder>
@@ -54172,6 +54571,21 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
}
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
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());
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
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());
}
/**
+ * + * 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 .mxaccess_gateway.v1.MxStatusProxy statuses = 7;
*/
public java.util.List