You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unify the sender API and only provide one API async fn send_message(msg: ..). bounded or unbounded is an impl detail that should be provided at the subsystem declaration, i.e.#[subsystem(DisputeDistributionMessage, sends: [ RuntimeApiMessage, DisputeCoordinatorMessage as unbounded, NetworkBridgeMessage,])] and thesend_messageimpl will take care of using the correct channels.ChannelsOut will also contain less entries.
drahnr
changed the title
Unify the sender API and only provide one API async fn send_message(msg: ..). bounded or unbounded is an impl detail that should be provided at the subsystem declaration, i.e.#[subsystem(DisputeDistributionMessage, sends: [ RuntimeApiMessage, DisputeCoordinatorMessage as unbounded, NetworkBridgeMessage,])] and the send_message impl will take care of using the correct channels. ChannelsOut will also contain less entries.
move unbounded or bounded sends to declaration, rathern than impl locality by default
Oct 5, 2022
Unify the
sender
API and only provide one APIasync fn send_message(msg: ..)
.bounded
orunbounded
is an impl detail that should be provided at the subsystem declaration, i.e.#[subsystem(DisputeDistributionMessage, sends: [ RuntimeApiMessage, DisputeCoordinatorMessage as unbounded, NetworkBridgeMessage,])]and the
send_messageimpl will take care of using the correct channels.
ChannelsOutwill also contain less entries.
and the
send_message
impl will take care of using the correct channels.ChannelsOut
will also contain less entries.The text was updated successfully, but these errors were encountered: