Package com.daml.ledger.api.v2.admin
Class PackageManagementServiceGrpc.PackageManagementServiceFutureStub
java.lang.Object
io.grpc.stub.AbstractStub<PackageManagementServiceGrpc.PackageManagementServiceFutureStub>
io.grpc.stub.AbstractFutureStub<PackageManagementServiceGrpc.PackageManagementServiceFutureStub>
com.daml.ledger.api.v2.admin.PackageManagementServiceGrpc.PackageManagementServiceFutureStub
- Enclosing class:
PackageManagementServiceGrpc
public static final class PackageManagementServiceGrpc.PackageManagementServiceFutureStub
extends io.grpc.stub.AbstractFutureStub<PackageManagementServiceGrpc.PackageManagementServiceFutureStub>
A stub to allow clients to do ListenableFuture-style rpc calls to service PackageManagementService.
Status: experimental interface, will change before it is deemed production ready Query the Daml-LF packages supported by the ledger participant and upload DAR files. We use 'backing participant' to refer to this specific participant in the methods of this API.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.grpc.stub.AbstractStub
io.grpc.stub.AbstractStub.StubFactory<T extends io.grpc.stub.AbstractStub<T>> -
Method Summary
Modifier and TypeMethodDescriptionbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions) com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.ListKnownPackagesResponse> Returns the details of all Daml-LF packages known to the backing participant.com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.UpdateVettedPackagesResponse> Update the vetted packages of this participantcom.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.UploadDarFileResponse> Upload a DAR file to the participant.com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.ValidateDarFileResponse> Validates the DAR and checks the upgrade compatibility of the DAR's packages with the set of the already vetted packages on the target vetting synchronizer.Methods inherited from class io.grpc.stub.AbstractFutureStub
newStub, newStubMethods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOnReadyThreshold, withOption, withWaitForReady
-
Method Details
-
build
protected PackageManagementServiceGrpc.PackageManagementServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
buildin classio.grpc.stub.AbstractStub<PackageManagementServiceGrpc.PackageManagementServiceFutureStub>
-
listKnownPackages
public com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.ListKnownPackagesResponse> listKnownPackages(PackageManagementServiceOuterClass.ListKnownPackagesRequest request) Returns the details of all Daml-LF packages known to the backing participant.
-
uploadDarFile
public com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.UploadDarFileResponse> uploadDarFile(PackageManagementServiceOuterClass.UploadDarFileRequest request) Upload a DAR file to the participant. If vetting is enabled in the request, the DAR is checked for upgrade compatibility with the set of the already vetted packages on the target vetting synchronizer See UploadDarFileRequest for details regarding vetting and the target vetting synchronizer.
-
validateDarFile
public com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.ValidateDarFileResponse> validateDarFile(PackageManagementServiceOuterClass.ValidateDarFileRequest request) Validates the DAR and checks the upgrade compatibility of the DAR's packages with the set of the already vetted packages on the target vetting synchronizer. See ValidateDarFileRequest for details regarding the target vetting synchronizer. The operation has no effect on the state of the participant or the Canton ledger: the DAR payload and its packages are not persisted neither are the packages vetted.
-
updateVettedPackages
public com.google.common.util.concurrent.ListenableFuture<PackageManagementServiceOuterClass.UpdateVettedPackagesResponse> updateVettedPackages(PackageManagementServiceOuterClass.UpdateVettedPackagesRequest request) Update the vetted packages of this participant
-