tempest-source-mock 0.1.1

Tempest source implementation of a Mock Queue
Documentation
  • Coverage
  • 27.27%
    3 out of 11 items documented0 out of 8 items with examples
  • Size
  • Source code size: 14.95 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.54 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 32s Average build duration of successful builds.
  • all releases: 32s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • grippy/tempest
    3 1 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • grippy

Tempest Source for Mock Queues

This source implements a basic queue for mocking message polling. Most tempest topology tests use this Source

Install

Cargo.toml

[dependencies]
tempest-source-mock = "0.1.0"

Usage

use tempest_source_mock::prelude::*;

// create a type alias to the MockSourceBuilder
type Source = MockSourceBuilder;

// configure a topology with this source
struct MyTopology {}
impl Topology<Source> for MyTopology {
    // implementation code here
}