1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//! Delivering one item to one host destination, durably.
//!
//! A supervisor's question to a working agent and a projected reason
//! for an integrator to look at a ceremony are the same mechanism: an
//! item, a destination, an exclusive hand-out, an acknowledgement and a
//! visible end. Modelled once here so the two never drift apart.
//!
//! Nothing in this module is a ceremony fact. Queued, leased, reached,
//! expired and failed describe how news travelled, and the sealed
//! stream records what the ceremony decided — the two answer different
//! questions and are stored in different places on purpose.
pub use AttentionEventId;
pub use AttentionKind;
pub use AttentionOverflowPolicy;
pub use AttentionPolicy;
pub use AttentionReason;
pub use AttentionSummary;
pub use DeliveryAttempt;
pub use DeliveryAttemptLimit;
pub use DeliveryExpiryCause;
pub use DeliveryFailureReason;
pub use DeliveryHistory;
pub use DeliveryHistoryEntry;
pub use DeliveryNote;
pub use FollowReplacement;
pub use HostActivationAdapterKind;
pub use HostActivationEnvelope;
pub use HostActivationMode;
pub use HostActivationReceipt;
pub use HostAddress;
pub use HostDeliveryId;
pub use HostDeliveryItem;
pub use HostDeliveryItemKind;
pub use HostDeliveryLease;
pub use HostDeliveryLeaseId;
pub use HostDeliveryMode;
pub use HostDeliveryObservation;
pub use HostDeliveryObservationKind;
pub use HostDeliveryPolicy;
pub use HostDeliveryRecord;
pub use HostDeliveryState;
pub use HostDeliveryStateKind;
pub use HostDeliveryTarget;
pub use HostDeliveryTargetKey;
pub use HostDestination;
pub use HostKind;
pub use HostTransportRef;
pub use IntegratorBinding;
pub use IntegratorBindingId;
pub use IntegratorFence;
pub use IntegratorScope;
pub use IntegratorScopeKey;
pub use LoopLimits;
pub use LoopProgressMark;
pub use LoopRoundLimit;
pub use Owed;
pub use ProcessedActionKind;
pub use ProcessedActionRef;
pub use QueueLimit;