wireframe 0.3.0

Simplify building servers and clients for custom binary protocols.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
@multi_packet
Feature: Multi-packet responses
  Scenario: Response::with_channel streams frames sequentially
    When a handler uses the with_channel helper to emit messages
    Then all messages are received in order

  Scenario: no messages are emitted from a multi-packet response
    When a handler uses the with_channel helper to emit no messages
    Then no messages are received

  Scenario: Channel capacity overflow
    When a handler emits more messages than the channel capacity
    Then overflow messages are handled according to channel policy