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
//! Hooks for customising codec error recovery behaviour.
use Duration;
use ;
use crateCodecError;
/// Hook trait for customising codec error recovery behaviour.
///
/// Implementations can override default recovery policies based on
/// application-specific requirements or connection state.
///
/// # Default Implementation
///
/// The default implementation ([`DefaultRecoveryPolicy`]) delegates to
/// [`CodecError::default_recovery_policy`] for all errors.
///
/// # Examples
///
/// ```
/// use std::time::Duration;
///
/// use wireframe::codec::{
/// CodecError,
/// CodecErrorContext,
/// EofError,
/// RecoveryPolicy,
/// RecoveryPolicyHook,
/// };
///
/// /// Quarantine connections that close unexpectedly.
/// struct QuarantineOnPrematureEof;
///
/// impl RecoveryPolicyHook for QuarantineOnPrematureEof {
/// fn recovery_policy(&self, error: &CodecError, _ctx: &CodecErrorContext) -> RecoveryPolicy {
/// match error {
/// CodecError::Eof(EofError::MidFrame { .. }) => RecoveryPolicy::Quarantine,
/// _ => error.default_recovery_policy(),
/// }
/// }
///
/// fn quarantine_duration(&self, _error: &CodecError, _ctx: &CodecErrorContext) -> Duration {
/// Duration::from_secs(60)
/// }
/// }
/// ```
/// Default recovery policy implementation.
///
/// This implementation uses the built-in default policies from
/// [`CodecError::default_recovery_policy`] without any customisation.
;