[][src]Struct sccache::server::SccacheServer

pub struct SccacheServer<C: CommandCreatorSync> { /* fields omitted */ }

Implementations

impl<C: CommandCreatorSync> SccacheServer<C>[src]

pub fn new(
    port: u16,
    pool: ThreadPool,
    runtime: Runtime,
    client: Client,
    dist_client: DistClientContainer,
    storage: Arc<dyn Storage>
) -> Result<SccacheServer<C>>
[src]

pub fn set_idle_timeout(&mut self, timeout: Duration)[src]

Configures how long this server will be idle before shutting down.

pub fn set_storage(&mut self, storage: Arc<dyn Storage>)[src]

Set the storage this server will use.

pub fn pool(&self) -> &ThreadPool[src]

Returns a reference to a thread pool to run work on

pub fn command_creator(&self) -> &C[src]

Returns a reference to the command creator this server will use

pub fn port(&self) -> u16[src]

Returns the port that this server is bound to

pub fn run<F>(self, shutdown: F) -> Result<()> where
    F: Future
[src]

Runs this server to completion.

If the shutdown future resolves then the server will be shut down, otherwise the server may naturally shut down if it becomes idle for too long anyway.

Auto Trait Implementations

impl<C> !RefUnwindSafe for SccacheServer<C>[src]

impl<C> !Send for SccacheServer<C>[src]

impl<C> !Sync for SccacheServer<C>[src]

impl<C> Unpin for SccacheServer<C> where
    C: Unpin
[src]

impl<C> !UnwindSafe for SccacheServer<C>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,