Package com.daml.ledger.api.v1
Interface ActiveContractsServiceOuterClass.GetActiveContractsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ActiveContractsServiceOuterClass.GetActiveContractsResponse
,ActiveContractsServiceOuterClass.GetActiveContractsResponse.Builder
- Enclosing class:
- ActiveContractsServiceOuterClass
public static interface ActiveContractsServiceOuterClass.GetActiveContractsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventOuterClass.CreatedEvent
getActiveContracts(int index)
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset.int
getActiveContractsCount()
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset.java.util.List<EventOuterClass.CreatedEvent>
getActiveContractsList()
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset.EventOuterClass.CreatedEventOrBuilder
getActiveContractsOrBuilder(int index)
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset.java.util.List<? extends EventOuterClass.CreatedEventOrBuilder>
getActiveContractsOrBuilderList()
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset.java.lang.String
getOffset()
Included in the last message.com.google.protobuf.ByteString
getOffsetBytes()
Included in the last message.java.lang.String
getWorkflowId()
The workflow that created the contracts.com.google.protobuf.ByteString
getWorkflowIdBytes()
The workflow that created the contracts.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOffset
java.lang.String getOffset()
Included in the last message. The client should start consuming the transactions endpoint with this offset. The format of this field is described in ``ledger_offset.proto``. Required
string offset = 1 [json_name = "offset"];
- Returns:
- The offset.
-
getOffsetBytes
com.google.protobuf.ByteString getOffsetBytes()
Included in the last message. The client should start consuming the transactions endpoint with this offset. The format of this field is described in ``ledger_offset.proto``. Required
string offset = 1 [json_name = "offset"];
- Returns:
- The bytes for offset.
-
getWorkflowId
java.lang.String getWorkflowId()
The workflow that created the contracts. Must be a valid LedgerString (as described in ``value.proto``). Optional
string workflow_id = 2 [json_name = "workflowId"];
- Returns:
- The workflowId.
-
getWorkflowIdBytes
com.google.protobuf.ByteString getWorkflowIdBytes()
The workflow that created the contracts. Must be a valid LedgerString (as described in ``value.proto``). Optional
string workflow_id = 2 [json_name = "workflowId"];
- Returns:
- The bytes for workflowId.
-
getActiveContractsList
java.util.List<EventOuterClass.CreatedEvent> getActiveContractsList()
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset. Must be a valid LedgerString (as described in ``value.proto``). Optional
repeated .com.daml.ledger.api.v1.CreatedEvent active_contracts = 3 [json_name = "activeContracts"];
-
getActiveContracts
EventOuterClass.CreatedEvent getActiveContracts(int index)
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset. Must be a valid LedgerString (as described in ``value.proto``). Optional
repeated .com.daml.ledger.api.v1.CreatedEvent active_contracts = 3 [json_name = "activeContracts"];
-
getActiveContractsCount
int getActiveContractsCount()
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset. Must be a valid LedgerString (as described in ``value.proto``). Optional
repeated .com.daml.ledger.api.v1.CreatedEvent active_contracts = 3 [json_name = "activeContracts"];
-
getActiveContractsOrBuilderList
java.util.List<? extends EventOuterClass.CreatedEventOrBuilder> getActiveContractsOrBuilderList()
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset. Must be a valid LedgerString (as described in ``value.proto``). Optional
repeated .com.daml.ledger.api.v1.CreatedEvent active_contracts = 3 [json_name = "activeContracts"];
-
getActiveContractsOrBuilder
EventOuterClass.CreatedEventOrBuilder getActiveContractsOrBuilder(int index)
The list of contracts that were introduced by the workflow with ``workflow_id`` at the offset. Must be a valid LedgerString (as described in ``value.proto``). Optional
repeated .com.daml.ledger.api.v1.CreatedEvent active_contracts = 3 [json_name = "activeContracts"];
-
-