diff options
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/store/src/pathinfoservice/grpc.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tvix/store/src/pathinfoservice/grpc.rs b/tvix/store/src/pathinfoservice/grpc.rs index 0e4cbb758c05..6bb774c668a3 100644 --- a/tvix/store/src/pathinfoservice/grpc.rs +++ b/tvix/store/src/pathinfoservice/grpc.rs @@ -25,6 +25,17 @@ impl GRPCPathInfoService { grpc_client, } } + + /// construct a [GRPCDirectoryService] from a [proto::path_info_service_client::PathInfoServiceClient<Channel>]. + /// panics if called outside the context of a tokio runtime. + pub fn from_client( + grpc_client: proto::path_info_service_client::PathInfoServiceClient<Channel>, + ) -> Self { + Self { + tokio_handle: tokio::runtime::Handle::current(), + grpc_client, + } + } } impl PathInfoService for GRPCPathInfoService { |