Trait svc_storage::grpc::server::itinerary::rpc_service_server::RpcService
source · pub trait RpcService: Send + Sync + 'static {
// Required methods
fn get_by_id<'life0, 'async_trait>(
&'life0 self,
request: Request<Id>
) -> Pin<Box<dyn Future<Output = Result<Response<Object>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn insert<'life0, 'async_trait>(
&'life0 self,
request: Request<Data>
) -> Pin<Box<dyn Future<Output = Result<Response<Response>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn update<'life0, 'async_trait>(
&'life0 self,
request: Request<UpdateObject>
) -> Pin<Box<dyn Future<Output = Result<Response<Response>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn delete<'life0, 'async_trait>(
&'life0 self,
request: Request<Id>
) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn search<'life0, 'async_trait>(
&'life0 self,
request: Request<AdvancedSearchFilter>
) -> Pin<Box<dyn Future<Output = Result<Response<List>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn is_ready<'life0, 'async_trait>(
&'life0 self,
request: Request<ReadyRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<ReadyResponse>, 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 RpcServiceServer.
Required Methods§
sourcefn get_by_id<'life0, 'async_trait>(
&'life0 self,
request: Request<Id>
) -> Pin<Box<dyn Future<Output = Result<Response<Object>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn get_by_id<'life0, 'async_trait>(
&'life0 self,
request: Request<Id>
) -> Pin<Box<dyn Future<Output = Result<Response<Object>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Returns a [tonic::Response
] containing an itinerary Object
Takes an id
to find the right record to return.
Errors
Returns [tonic::Status
] with Code::NotFound
if no record is returned from the database
Examples
use svc_storage_client_grpc::{Id, ItineraryClient, simple_service::Client};
async fn example () -> Result<(), Box<dyn std::error::Error>> {
let mut itinerary_client = ItineraryClient::connect("http://localhost:50051").await?;
let id = "53acfe06-dd9b-42e8-8cb4-12a2fb2fa693".to_owned();
match itinerary_client
.get_by_id(tonic::Request::new(Id { id }))
.await
{
Ok(res) => {
println!("RESPONSE Itinerary By ID={:?}", res);
Ok(())
},
Err(e) => Err(Box::new(e))
}
}
sourcefn insert<'life0, 'async_trait>(
&'life0 self,
request: Request<Data>
) -> Pin<Box<dyn Future<Output = Result<Response<Response>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn insert<'life0, 'async_trait>(
&'life0 self,
request: Request<Data>
) -> Pin<Box<dyn Future<Output = Result<Response<Response>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Returns a [tonic::Response
] containing a itinerary Response
object
of the inserted record after saving the provided itinerary Data
The given data will be validated before insert.
A new UUID will be generated by the database and returned as id
as part of the returned itinerary Response
.
Any errors found during validation will be added to the ValidationResult
.
Errors
Returns Status
with Code::Internal
if the [tonic::Request
] doesn’t contain any data.
Returns Status
with Code::Internal
if any error is returned from a db call.
Examples
use svc_storage_client_grpc::{Id, ItineraryClient, simple_service::Client};
use svc_storage_client_grpc::itinerary::{Data, ItineraryStatus};
use std::time::SystemTime;
async fn example () -> Result<(), Box<dyn std::error::Error>> {
let mut itinerary_client = ItineraryClient::connect("http://localhost:50051").await?;
let user_id = "62fb5d13-2cfe-45e2-b89a-16205d15e811".to_owned();
println!("Starting insert itinerary");
match itinerary_client
.insert(tonic::Request::new(Data {
user_id,
status: ItineraryStatus::Active as i32
}))
.await
{
Ok(res) => {
println!("RESPONSE Itinerary Insert={:?}", res);
Ok(())
},
Err(e) => Err(Box::new(e))
}
}
sourcefn update<'life0, 'async_trait>(
&'life0 self,
request: Request<UpdateObject>
) -> Pin<Box<dyn Future<Output = Result<Response<Response>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn update<'life0, 'async_trait>(
&'life0 self,
request: Request<UpdateObject>
) -> Pin<Box<dyn Future<Output = Result<Response<Response>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Returns a [tonic::Response
] containing a itinerary Response
object
of the updated record after saving the provided itinerary Data
The given data will be validated before insert.
Any errors found during validation will be added to the ValidationResult
.
A field [prost_types::FieldMask
] can be provided to restrict updates to specific fields.
Errors
Returns Status
with Code::Cancelled
if the Request
doesn’t contain any data.
Returns Status
with Code::Internal
if any error is returned from a db call.
Returns Status
with Code::Internal
if the provided Id can not be converted to a [uuid::Uuid
].
Returns Status
with Code::Internal
if the resulting Vec<tokio_postgres::Row> data could not be converted into List
.
Examples
use svc_storage_client_grpc::{FieldMask, Id, ItineraryClient, simple_service::Client};
use svc_storage_client_grpc::itinerary::{Data, UpdateObject};
async fn example () -> Result<(), Box<dyn std::error::Error>> {
let mut itinerary_client = ItineraryClient::connect("http://localhost:50051").await?;
let id = "53acfe06-dd9b-42e8-8cb4-12a2fb2fa693".to_owned();
let response = match itinerary_client
.get_by_id(tonic::Request::new(Id { id: id.clone() }))
.await
{
Ok(res) => {
println!("RESPONSE Itinerary By ID={:?}", res);
res
},
Err(e) => {
return Err(Box::new(e));
}
};
let itinerary = response.into_inner().data.unwrap();
match itinerary_client.update(tonic::Request::new(UpdateObject {
id,
data: Some(Data {
..itinerary
}),
mask: Some(FieldMask {
paths: vec!["data.user_id".to_owned()],
}),
})).await
{
Ok(res) => {
println!("RESPONSE Itinerary Update={:?}", res);
Ok(())
},
Err(e) => Err(Box::new(e))
}
}
sourcefn delete<'life0, 'async_trait>(
&'life0 self,
request: Request<Id>
) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn delete<'life0, 'async_trait>(
&'life0 self,
request: Request<Id>
) -> Pin<Box<dyn Future<Output = Result<Response<()>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Takes an Id
to set the matching itinerary record as deleted in the database“
Errors
Returns Status
with Code::NotFound
if no record is returned from the database.
Returns Status
with Code::Internal
if any error is returned from a db call.
Examples
use svc_storage_client_grpc::{Id, ItineraryClient, simple_service::Client};
async fn example () -> Result<(), Box<dyn std::error::Error>> {
let mut itinerary_client = ItineraryClient::connect("http://localhost:50051").await?;
let id = "53acfe06-dd9b-42e8-8cb4-12a2fb2fa693".to_owned();
match itinerary_client.delete(tonic::Request::new(Id{id})).await
{
Ok(res) => {
println!("RESPONSE Itinerary Delete={:?}", res);
Ok(())
},
Err(e) => Err(Box::new(e))
}
}
sourcefn search<'life0, 'async_trait>(
&'life0 self,
request: Request<AdvancedSearchFilter>
) -> Pin<Box<dyn Future<Output = Result<Response<List>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn search<'life0, 'async_trait>(
&'life0 self,
request: Request<AdvancedSearchFilter>
) -> Pin<Box<dyn Future<Output = Result<Response<List>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Search itineraries using an advanced filter
This method supports paged results.
Errors
Returns Status
with Code::Internal
if any error is returned from the db search result.
Returns Status
with Code::Internal
if the resulting Vec<tokio_postgres::Row> data could not be converted into List
.
Examples
use svc_storage_client_grpc::{AdvancedSearchFilter, ItineraryClient, simple_service::Client};
async fn example () -> Result<(), Box<dyn std::error::Error>> {
let mut itinerary_client = ItineraryClient::connect("http://localhost:50051").await?;
let user_id = "a2093c5e-9bbe-4f0f-97ee-276b43fa3759".to_owned();
let filter = AdvancedSearchFilter::search_equals("user_id".to_owned(), user_id);
match itinerary_client
.search(tonic::Request::new(filter))
.await
{
Ok(res) => {
println!("RESPONSE Itinerary Search={:?}", res);
Ok(())
},
Err(e) => Err(Box::new(e))
}
}
sourcefn is_ready<'life0, 'async_trait>(
&'life0 self,
request: Request<ReadyRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<ReadyResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn is_ready<'life0, 'async_trait>(
&'life0 self,
request: Request<ReadyRequest>
) -> Pin<Box<dyn Future<Output = Result<Response<ReadyResponse>, Status>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Simple ready check to allow callers to validate the client connection status.