mssf-util 0.6.2

mssf utilites and extensions for tokio and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------

// Experimental. APIs may change without notice.
// Mock utilities for testing.

mod runtime;
pub use runtime::{CreateStatelessServiceArg, StatelessServiceInstanceDriver};

mod stateless;
pub use stateless::StatelessServicePartitionMock;

mod stateful;
pub use stateful::{
    CreateStatefulServicePartitionArg, StatefulServicePartitionDriver, StatefulServicePartitionMock,
};