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
//! Handler traits: IRequestHandler and IEventHandler.
//!
//! ## IRequestHandler<T, R>
//!
//! Dual-type-parameter handler: `T` is the request type, `R` is the response type.
//! The constraint `T: IRequest<R>` ensures type safety between request and response.
//!
//! ```ignore
//! #[async_trait]
//! impl IRequestHandler<GetUserRequest, UserModel> for GetUserHandler {
//! async fn handle(&self, req: GetUserRequest) -> Result<UserModel> { ... }
//! }
//! ```
use crateIClaims;
use crateResult;
use crate;
/// Handles a single `IRequest<R>`, producing its associated response `R`.
///
/// Register via `#[handler]` proc macro for compile-time collection,
/// or use `register_handlers!` for manual DI registration.
///
/// ```ignore
/// #[async_trait]
/// impl IRequestHandler<GetUserRequest, UserModel> for GetUserHandler {
/// async fn handle(&self, req: GetUserRequest) -> Result<UserModel> { ... }
/// }
/// ```
/// Handles a single `IEventRequest`, performing side effects.
///
/// ```ignore
/// #[async_trait]
/// impl IEventHandler<UserCreatedEvent> for SendWelcomeEmailHandler {
/// async fn handle(&self, event: UserCreatedEvent) -> Result<()> { ... }
/// }
/// ```
/// Background service that is started when the host starts and
/// stopped when the host performs a graceful shutdown.
///
/// Analogous to ASP.NET Core's IHostedService.
///
/// Use this for:
/// - Data initialization / seeding at application startup
/// - Background polling loops
/// - Queue consumers
/// - Connection pool warmup
///
/// # Example
///
/// ```ignore
/// #[derive(Default)]
/// struct DbInitService;
///
/// #[async_trait]
/// impl IHostedService for DbInitService {
/// async fn start(&self) -> Result<()> {
/// tracing::info!("[DbInitService] Running migrations...");
/// run_migrations().await?;
/// tracing::info!("[DbInitService] Seeding data...");
/// seed_data().await?;
/// Ok(())
/// }
///
/// async fn stop(&self) -> Result<()> {
/// tracing::info!("[DbInitService] Shutting down...");
/// Ok(())
/// }
/// }
/// ```