pub struct SignerLoop<C: 'static + Client> { /* private fields */ }
Expand description
Implement the hsmd UNIX fd protocol. This doesn’t actually perform the signing - the hsmd packets are transported via gRPC to the real signer.
Implementations§
Source§impl<C: 'static + Client> SignerLoop<C>
impl<C: 'static + Client> SignerLoop<C>
Sourcepub fn new(
client: C,
signer_port: Arc<GrpcSignerPort>,
shutdown_trigger: Trigger,
shutdown_signal: Listener,
init_message_cache: Arc<Mutex<InitMessageCache>>,
) -> Self
pub fn new( client: C, signer_port: Arc<GrpcSignerPort>, shutdown_trigger: Trigger, shutdown_signal: Listener, init_message_cache: Arc<Mutex<InitMessageCache>>, ) -> Self
Create a loop for the root (lightningd) connection, but doesn’t start it yet
Sourcepub fn init_message_cache(&self) -> Arc<Mutex<InitMessageCache>>
pub fn init_message_cache(&self) -> Arc<Mutex<InitMessageCache>>
The init message cache
Auto Trait Implementations§
impl<C> Freeze for SignerLoop<C>where
C: Freeze,
impl<C> RefUnwindSafe for SignerLoop<C>where
C: RefUnwindSafe,
impl<C> Send for SignerLoop<C>
impl<C> Sync for SignerLoop<C>where
C: Sync,
impl<C> Unpin for SignerLoop<C>where
C: Unpin,
impl<C> UnwindSafe for SignerLoop<C>where
C: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Downcast for T
impl<T> Downcast for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request