fabaccess-bffh/src/api/machines.rs

39 lines
896 B
Rust
Raw Normal View History

2020-11-17 14:28:04 +01:00
use std::sync::Arc;
2020-11-17 14:15:29 +01:00
use capnp::capability::Promise;
use capnp::Error;
2020-11-17 14:28:04 +01:00
use crate::schema::api_capnp::machines;
use crate::connection::Session;
/// An implementation of the `Machines` API
struct Machines {
/// A reference to the connection — as long as at least one API endpoint is
/// still alive the session has to be as well.
session: Arc<Session>,
}
impl Machines {
pub fn new(session: Arc<Session>) -> Self {
Self { session }
}
}
2020-11-17 14:15:29 +01:00
impl machines::Server for Machines {
fn list_machines(&mut self,
_params: machines::ListMachinesParams,
mut results: machines::ListMachinesResults)
-> Promise<(), Error>
{
Promise::ok(())
}
fn get_machine(&mut self,
_params: machines::GetMachineParams,
mut results: machines::GetMachineResults)
-> Promise<(), Error>
{
Promise::ok(())
}
}