Struct kubos_service::Service [−][src]
pub struct Service<'a, Query, Mutation, S> where
Query: GraphQLType<Context = Context<S>> + Send + Sync + 'static,
Mutation: GraphQLType<Context = Context<S>> + Send + Sync + 'static, { /* fields omitted */ }
This structure represents a hardware service.
Specifically the functionality provided by this struct exists to provide a GraphQL interface over UDP, a means of exposing a subsystem to GraphQL queries and means for persistence throughout GraphQL queries.
Examples
Creating and starting a service.
use kubos_service::Service; let sub = model::Subsystem::new(); Service::new( "example-service", sub, schema::QueryRoot, schema::MutationRoot, ).start();
Methods
impl<'a, Query, Mutation, S> Service<'a, Query, Mutation, S> where
Query: GraphQLType<Context = Context<S>, TypeInfo = ()> + Send + Sync + 'static,
Mutation: GraphQLType<Context = Context<S>, TypeInfo = ()> + Send + Sync + 'static,
[src]
impl<'a, Query, Mutation, S> Service<'a, Query, Mutation, S> where
Query: GraphQLType<Context = Context<S>, TypeInfo = ()> + Send + Sync + 'static,
Mutation: GraphQLType<Context = Context<S>, TypeInfo = ()> + Send + Sync + 'static,
pub fn new(
config: Config,
subsystem: S,
query: Query,
mutation: Mutation
) -> Self
[src]
pub fn new(
config: Config,
subsystem: S,
query: Query,
mutation: Mutation
) -> Self
Creates a new service instance
Arguments
name
- The name of the service. This is used to find the appropriate config information
subsystem
- An instance of the subsystem struct. This one instance will be used by all queries.
query
- The root query struct holding all other GraphQL queries.
mutation
- The root mutation struct holding all other GraphQL mutations.
pub fn start(&self)
[src]
pub fn start(&self)
Starts the service's GraphQL/UDP server. This function runs without return.
Panics
The UDP interface will panic if the ip address and port provided cannot be bound (like if they are already in use), or if for some reason the socket fails to receive a message.
pub fn process(&self, query: String) -> String
[src]
pub fn process(&self, query: String) -> String
Processes a GraphQL query