Trait chirpstack_api::fuota::fuota_server_service_server::FuotaServerService[][src]

pub trait FuotaServerService: Send + Sync + 'static {
#[must_use]    fn create_deployment<'life0, 'async_trait>(
        &'life0 self,
        request: Request<CreateDeploymentRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<CreateDeploymentResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn get_deployment_status<'life0, 'async_trait>(
        &'life0 self,
        request: Request<GetDeploymentStatusRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<GetDeploymentStatusResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn get_deployment_device_logs<'life0, 'async_trait>(
        &'life0 self,
        request: Request<GetDeploymentDeviceLogsRequest>
    ) -> Pin<Box<dyn Future<Output = Result<Response<GetDeploymentDeviceLogsResponse>, Status>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Generated trait containing gRPC methods that should be implemented for use with FuotaServerServiceServer.

Required methods

#[must_use]fn create_deployment<'life0, 'async_trait>(
    &'life0 self,
    request: Request<CreateDeploymentRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<CreateDeploymentResponse>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

CreateDeployment creates the given FUOTA deployment.

#[must_use]fn get_deployment_status<'life0, 'async_trait>(
    &'life0 self,
    request: Request<GetDeploymentStatusRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<GetDeploymentStatusResponse>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

GetDeploymentStatus returns the FUOTA deployment status given an ID.

#[must_use]fn get_deployment_device_logs<'life0, 'async_trait>(
    &'life0 self,
    request: Request<GetDeploymentDeviceLogsRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<GetDeploymentDeviceLogsResponse>, Status>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

GetDeploymentDeviceLogs returns the FUOTA logs given a deployment ID and DevEUI.

Loading content...

Implementors

Loading content...