pub trait FirebirdClientDbEvents: FirebirdClientDbOps {
    fn wait_for_event(
        &mut self,
        db_handle: &mut Self::DbHandle,
        name: String
    ) -> Result<(), FbError>; }
Expand description

Firebird base event API

Required Methods§

source

fn wait_for_event(
    &mut self,
    db_handle: &mut Self::DbHandle,
    name: String
) -> Result<(), FbError>

Wait for an event to be posted on database

Implementors§