Package com.daml.ledger.rxjava
Interface ActiveContractsClient
- 
- All Known Implementing Classes:
- ActiveContractClientImpl
 
 public interface ActiveContractsClientAn RxJava version ofActiveContractsServiceGrpc
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description <Ct> io.reactivex.Flowable<ActiveContracts<Ct>>getActiveContracts(ContractFilter<Ct> contractFilter, java.util.Set<java.lang.String> parties, boolean verbose)Get active Contracts<Ct> io.reactivex.Flowable<ActiveContracts<Ct>>getActiveContracts(ContractFilter<Ct> contractFilter, java.util.Set<java.lang.String> parties, boolean verbose, java.lang.String accessToken)Get active Contractsio.reactivex.Flowable<GetActiveContractsResponse>getActiveContracts(TransactionFilter filter, boolean verbose)io.reactivex.Flowable<GetActiveContractsResponse>getActiveContracts(TransactionFilter filter, boolean verbose, java.lang.String accessToken)
 
- 
- 
- 
Method Detail- 
getActiveContractsio.reactivex.Flowable<GetActiveContractsResponse> getActiveContracts(TransactionFilter filter, boolean verbose) 
 - 
getActiveContractsio.reactivex.Flowable<GetActiveContractsResponse> getActiveContracts(TransactionFilter filter, boolean verbose, java.lang.String accessToken) 
 - 
getActiveContracts<Ct> io.reactivex.Flowable<ActiveContracts<Ct>> getActiveContracts(ContractFilter<Ct> contractFilter, java.util.Set<java.lang.String> parties, boolean verbose) Get active Contracts- Parameters:
- contractFilter- Utilities for specified type of contract. It can be instantiated with- ContractTypeCompanion
- parties- Set of parties to be included in the transaction filter.
- verbose- If enabled, values served over the API will contain more information than strictly necessary to interpret the data.
- Returns:
- Flowable of active contracts of type Ct
 
 - 
getActiveContracts<Ct> io.reactivex.Flowable<ActiveContracts<Ct>> getActiveContracts(ContractFilter<Ct> contractFilter, java.util.Set<java.lang.String> parties, boolean verbose, java.lang.String accessToken) Get active Contracts- Parameters:
- contractFilter- Utilities for specified type of contract. It can be instantiated with- ContractTypeCompanion
- parties- Set of parties to be included in the transaction filter.
- verbose- If enabled, values served over the API will contain more information than strictly necessary to interpret the data.
- accessToken- Access token for authentication.
- Returns:
- Active contracts of type Ct
 
 
- 
 
-