Map AHP decision to hook result based on event type.
(
&self,
event_type: EventType,
decision_payload: serde_json::Value,
)
| 794 | |
| 795 | /// Map AHP decision to hook result based on event type. |
| 796 | fn map_decision( |
| 797 | &self, |
| 798 | event_type: EventType, |
| 799 | decision_payload: serde_json::Value, |
| 800 | ) -> HookResult { |
| 801 | super::decision::map_decision(event_type, decision_payload) |
| 802 | } |
| 803 | |
| 804 | /// Check if event type requires blocking (synchronous) response |
| 805 | fn is_blocking_event(&self, event_type: HookEventType) -> bool { |