diff options
Diffstat (limited to 'tvix/store')
-rw-r--r-- | tvix/store/src/directoryservice/grpc.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tvix/store/src/directoryservice/grpc.rs b/tvix/store/src/directoryservice/grpc.rs index 46e19224c759..1b33572cf7de 100644 --- a/tvix/store/src/directoryservice/grpc.rs +++ b/tvix/store/src/directoryservice/grpc.rs @@ -32,6 +32,17 @@ impl GRPCDirectoryService { grpc_client, } } + + /// construct a [GRPCDirectoryService] from a [proto::blob_service_client::BlobServiceClient<Channel>]. + /// panics if called outside the context of a tokio runtime. + pub fn from_client( + grpc_client: proto::directory_service_client::DirectoryServiceClient<Channel>, + ) -> Self { + Self { + tokio_handle: tokio::runtime::Handle::current(), + grpc_client, + } + } } impl DirectoryService for GRPCDirectoryService { |