pub trait BlockchainUpdatesApi:
Send
+ Sync
+ 'static {
type SubscribeStream: Stream<Item = Result<SubscribeEvent, Status>> + Send + 'static;
// Required methods
fn get_block_update<'life0, 'async_trait>(
&'life0 self,
request: Request<GetBlockUpdateRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<GetBlockUpdateResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_block_updates_range<'life0, 'async_trait>(
&'life0 self,
request: Request<GetBlockUpdatesRangeRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<GetBlockUpdatesRangeResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn subscribe<'life0, 'async_trait>(
&'life0 self,
request: Request<SubscribeRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<Self::SubscribeStream>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Generated trait containing gRPC methods that should be implemented for use with BlockchainUpdatesApiServer.
Required Associated Types§
Sourcetype SubscribeStream: Stream<Item = Result<SubscribeEvent, Status>> + Send + 'static
type SubscribeStream: Stream<Item = Result<SubscribeEvent, Status>> + Send + 'static
Server streaming response type for the Subscribe method.