pub struct BauBot<Db: BauData + Send + Sync + 'static, DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static> { /* private fields */ }Expand description
§BauBot
Call BauBot::new with a BauData database to start the server(s). A new instance of BauBot is created that implements Deref to a broadcaster::types::ClientSocket (for sending a broadcaster::types::BauMessage) to BauBot.
Under the hood, calling BauBot::new orchestrates and wraps a number of tasks. See BauBot::new for more information.
Implementations§
Source§impl<Db: BauData + Send + Sync + 'static, DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static> BauBot<Db, DbRef>
impl<Db: BauData + Send + Sync + 'static, DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static> BauBot<Db, DbRef>
Sourcepub fn new<S: Into<String>>(db: DbRef, token: S) -> Self
pub fn new<S: Into<String>>(db: DbRef, token: S) -> Self
Creates a new BauBot. This runs a number of concurrent tasks
- (test mode) Initialise environment variables and logger
- Initialises a request server to listen for requests sent through a broadcaster::types::ClientSocket
- Initialises a [Bot] to interact with telegram
Methods from Deref<Target = ClientSocket>§
pub fn send(&self, message: T) -> Result<(), SendError<T>>
pub fn send(&self, message: T) -> Result<(), SendError<T>>
Attempts to send a message on this UnboundedSender without blocking.
This method is not marked async because sending a message to an unbounded channel
never requires any form of waiting. Because of this, the send method can be
used in both synchronous and asynchronous code without problems.
If the receive half of the channel is closed, either due to close
being called or the UnboundedReceiver having been dropped, this
function returns an error. The error includes the value passed to send.
pub async fn closed(&self)
pub async fn closed(&self)
Completes when the receiver has dropped.
This allows the producers to get notified when interest in the produced values is canceled and immediately stop doing work.
§Cancel safety
This method is cancel safe. Once the channel is closed, it stays closed
forever and all future calls to closed will return immediately.
§Examples
use tokio::sync::mpsc;
#[tokio::main]
async fn main() {
let (tx1, rx) = mpsc::unbounded_channel::<()>();
let tx2 = tx1.clone();
let tx3 = tx1.clone();
let tx4 = tx1.clone();
let tx5 = tx1.clone();
tokio::spawn(async move {
drop(rx);
});
futures::join!(
tx1.closed(),
tx2.closed(),
tx3.closed(),
tx4.closed(),
tx5.closed()
);
}pub fn is_closed(&self) -> bool
pub fn is_closed(&self) -> bool
Checks if the channel has been closed. This happens when the
UnboundedReceiver is dropped, or when the
UnboundedReceiver::close method is called.
let (tx, rx) = tokio::sync::mpsc::unbounded_channel::<()>();
assert!(!tx.is_closed());
let tx2 = tx.clone();
assert!(!tx2.is_closed());
drop(rx);
assert!(tx.is_closed());
assert!(tx2.is_closed());pub fn same_channel(&self, other: &UnboundedSender<T>) -> bool
pub fn same_channel(&self, other: &UnboundedSender<T>) -> bool
Returns true if senders belong to the same channel.
§Examples
let (tx, rx) = tokio::sync::mpsc::unbounded_channel::<()>();
let tx2 = tx.clone();
assert!(tx.same_channel(&tx2));
let (tx3, rx3) = tokio::sync::mpsc::unbounded_channel::<()>();
assert!(!tx3.same_channel(&tx2));pub fn downgrade(&self) -> WeakUnboundedSender<T>
pub fn downgrade(&self) -> WeakUnboundedSender<T>
Converts the UnboundedSender to a [WeakUnboundedSender] that does not count
towards RAII semantics, i.e. if all UnboundedSender instances of the
channel were dropped and only WeakUnboundedSender instances remain,
the channel is closed.
pub fn strong_count(&self) -> usize
pub fn strong_count(&self) -> usize
Returns the number of [UnboundedSender] handles.
pub fn weak_count(&self) -> usize
pub fn weak_count(&self) -> usize
Returns the number of [WeakUnboundedSender] handles.
Trait Implementations§
Source§impl<Db: BauData + Send + Sync + 'static, DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static> AsRef<UnboundedSender<BauMessage>> for BauBot<Db, DbRef>
impl<Db: BauData + Send + Sync + 'static, DbRef: Deref<Target = Db> + Clone + Send + Sync + 'static> AsRef<UnboundedSender<BauMessage>> for BauBot<Db, DbRef>
Source§fn as_ref(&self) -> &ClientSocket
fn as_ref(&self) -> &ClientSocket
Auto Trait Implementations§
impl<Db, DbRef> Freeze for BauBot<Db, DbRef>
impl<Db, DbRef> RefUnwindSafe for BauBot<Db, DbRef>where
DbRef: RefUnwindSafe,
impl<Db, DbRef> Send for BauBot<Db, DbRef>
impl<Db, DbRef> Sync for BauBot<Db, DbRef>
impl<Db, DbRef> Unpin for BauBot<Db, DbRef>where
DbRef: Unpin,
impl<Db, DbRef> UnwindSafe for BauBot<Db, DbRef>where
DbRef: 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
§impl<T> Erasable for T
impl<T> Erasable for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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 more