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
//! Mediator traits: IMediator, IRequest, IEventRequest.
//!
//! ## IRequest<TResponse> — structured return pattern
//!
//! Each request type carries its response type as a generic parameter.
//! The framework serializes `T` to JSON and sets HTTP 200.
//!
//! For commands with no return value, implement `IRequest<()>`.
//! The framework detects `()` and returns HTTP 204 No Content.
//!
//! ```ignore
//! impl IRequest<UserModel> for GetUserRequest {}
//! impl IRequest<()> for DeleteUserRequest {} // → 204
//! ```
use crateResult;
/// Marker trait for a request (command or query) carrying a structured response `TResponse`.
///
/// - `TResponse: Serialize` → framework writes JSON and sets status 200
/// - `TResponse = ()` → framework writes no body and sets status 204
///
/// ```ignore
/// impl IRequest<UserModel> for GetUserRequest {}
/// impl IRequest<()> for DeleteUserRequest {}
/// ```
/// Marker trait for an event (notification) that does not produce a response.
///
/// Use `IEventRequest` for fire-and-forget notifications.
///
/// ```ignore
/// impl IEventRequest for UserCreatedEvent {}
/// ```
/// The mediator dispatches requests to their handlers and publishes events
/// to all registered handlers.
///
/// Analogous to MediatR's IMediator.