pub struct TestChannelMessageHandler {
    pub pending_events: Mutex<Vec<MessageSendEvent>>,
    pub message_fetch_counter: AtomicUsize,
    /* private fields */
}

Fields§

§pending_events: Mutex<Vec<MessageSendEvent>>§message_fetch_counter: AtomicUsize

Implementations§

Trait Implementations§

§

impl ChannelMessageHandler for TestChannelMessageHandler

§

fn handle_open_channel(&self, _their_node_id: &PublicKey, msg: &OpenChannel)

Handle an incoming open_channel message from the given peer.
§

fn handle_accept_channel(&self, _their_node_id: &PublicKey, msg: &AcceptChannel)

Handle an incoming accept_channel message from the given peer.
§

fn handle_funding_created( &self, _their_node_id: &PublicKey, msg: &FundingCreated, )

Handle an incoming funding_created message from the given peer.
§

fn handle_funding_signed(&self, _their_node_id: &PublicKey, msg: &FundingSigned)

Handle an incoming funding_signed message from the given peer.
§

fn handle_channel_ready(&self, _their_node_id: &PublicKey, msg: &ChannelReady)

Handle an incoming channel_ready message from the given peer.
§

fn handle_shutdown(&self, _their_node_id: &PublicKey, msg: &Shutdown)

Handle an incoming shutdown message from the given peer.
§

fn handle_closing_signed(&self, _their_node_id: &PublicKey, msg: &ClosingSigned)

Handle an incoming closing_signed message from the given peer.
§

fn handle_update_add_htlc( &self, _their_node_id: &PublicKey, msg: &UpdateAddHTLC, )

Handle an incoming update_add_htlc message from the given peer.
§

fn handle_update_fulfill_htlc( &self, _their_node_id: &PublicKey, msg: &UpdateFulfillHTLC, )

Handle an incoming update_fulfill_htlc message from the given peer.
§

fn handle_update_fail_htlc( &self, _their_node_id: &PublicKey, msg: &UpdateFailHTLC, )

Handle an incoming update_fail_htlc message from the given peer.
§

fn handle_update_fail_malformed_htlc( &self, _their_node_id: &PublicKey, msg: &UpdateFailMalformedHTLC, )

Handle an incoming update_fail_malformed_htlc message from the given peer.
§

fn handle_commitment_signed( &self, _their_node_id: &PublicKey, msg: &CommitmentSigned, )

Handle an incoming commitment_signed message from the given peer.
§

fn handle_revoke_and_ack(&self, _their_node_id: &PublicKey, msg: &RevokeAndACK)

Handle an incoming revoke_and_ack message from the given peer.
§

fn handle_update_fee(&self, _their_node_id: &PublicKey, msg: &UpdateFee)

Handle an incoming update_fee message from the given peer.
§

fn handle_channel_update( &self, _their_node_id: &PublicKey, _msg: &ChannelUpdate, )

Handle an incoming channel_update message from the given peer.
§

fn handle_announcement_signatures( &self, _their_node_id: &PublicKey, msg: &AnnouncementSignatures, )

Handle an incoming announcement_signatures message from the given peer.
§

fn handle_channel_reestablish( &self, _their_node_id: &PublicKey, msg: &ChannelReestablish, )

Handle an incoming channel_reestablish message from the given peer.
§

fn peer_disconnected(&self, their_node_id: &PublicKey)

Indicates a connection to the peer failed/an existing connection was lost.
§

fn peer_connected( &self, their_node_id: &PublicKey, _msg: &Init, _inbound: bool, ) -> Result<(), ()>

Handle a peer reconnecting, possibly generating channel_reestablish message(s). Read more
§

fn handle_error(&self, _their_node_id: &PublicKey, msg: &ErrorMessage)

Handle an incoming error message from the given peer.
§

fn provided_node_features(&self) -> Features<NodeContext>

Gets the node feature flags which this handler itself supports. All available handlers are queried similarly and their feature flags are OR’d together to form the NodeFeatures which are broadcasted in our NodeAnnouncement message.
§

fn provided_init_features( &self, _their_init_features: &PublicKey, ) -> Features<InitContext>

Gets the init feature flags which should be sent to the given peer. All available handlers are queried similarly and their feature flags are OR’d together to form the InitFeatures which are sent in our Init message. Read more
§

fn get_chain_hashes(&self) -> Option<Vec<ChainHash>>

Gets the chain hashes for this ChannelMessageHandler indicating which chains it supports. Read more
§

fn handle_open_channel_v2( &self, _their_node_id: &PublicKey, msg: &OpenChannelV2, )

Handle an incoming open_channel2 message from the given peer.
§

fn handle_accept_channel_v2( &self, _their_node_id: &PublicKey, msg: &AcceptChannelV2, )

Handle an incoming accept_channel2 message from the given peer.
§

fn handle_tx_add_input(&self, _their_node_id: &PublicKey, msg: &TxAddInput)

Handle an incoming tx_add_input message from the given peer.
§

fn handle_tx_add_output(&self, _their_node_id: &PublicKey, msg: &TxAddOutput)

Handle an incoming tx_add_output message from the given peer.
§

fn handle_tx_remove_input( &self, _their_node_id: &PublicKey, msg: &TxRemoveInput, )

Handle an incoming tx_remove_input message from the given peer.
§

fn handle_tx_remove_output( &self, _their_node_id: &PublicKey, msg: &TxRemoveOutput, )

Handle an incoming tx_remove_output message from the given peer.
§

fn handle_tx_complete(&self, _their_node_id: &PublicKey, msg: &TxComplete)

Handle an incoming tx_complete message from the given peer.
§

fn handle_tx_signatures(&self, _their_node_id: &PublicKey, msg: &TxSignatures)

Handle an incoming tx_signatures message from the given peer.
§

fn handle_tx_init_rbf(&self, _their_node_id: &PublicKey, msg: &TxInitRbf)

Handle an incoming tx_init_rbf message from the given peer.
§

fn handle_tx_ack_rbf(&self, _their_node_id: &PublicKey, msg: &TxAckRbf)

Handle an incoming tx_ack_rbf message from the given peer.
§

fn handle_tx_abort(&self, _their_node_id: &PublicKey, msg: &TxAbort)

Handle an incoming tx_abort message from the given peer.
§

impl Drop for TestChannelMessageHandler

§

fn drop(&mut self)

Executes the destructor for this type. Read more
§

impl MessageSendEventsProvider for TestChannelMessageHandler

§

fn get_and_clear_pending_msg_events(&self) -> Vec<MessageSendEvent>

Gets the list of pending events which were generated by previous actions, clearing the list in the process.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Any for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

§

fn type_name(&self) -> &'static str

§

impl<T> AnySync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

§

impl<T> AsAny for T
where T: Any,

§

fn as_any(&self) -> &(dyn Any + 'static)

§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

§

fn type_name(&self) -> &'static str

Gets the type name of self
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32, ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: AsAny + ?Sized,

§

fn is<T>(&self) -> bool
where T: AsAny,

Returns true if the boxed type is the same as T. Read more
§

fn downcast_ref<T>(&self) -> Option<&T>
where T: AsAny,

Forward to the method defined on the type Any.
§

fn downcast_mut<T>(&mut self) -> Option<&mut T>
where T: AsAny,

Forward to the method defined on the type Any.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> DartSafe for T