Optional
autoOptional flag to automatically ban a client immediately after failed validation.
Optional
banOptional default message to display when a client is banned, overridden by getBanMessage if provided.
Optional
callbacksOptional set of callbacks for policy events, allowing customization of validation and ban actions.
Optional
docOptional description for documentation purposes, aiding in policy usage understanding.
Optional
getOptional function to retrieve a custom ban message for a client. Overrides the default banMessage if provided.
The unique session ID of the banned client.
The unique name of the policy.
The unique name of the swarm.
The ban message or null, synchronously or asynchronously.
Optional
getRetrieves the list of currently banned clients under this policy.
The unique name of the policy.
The unique name of the swarm.
An array of banned session IDs, synchronously or asynchronously.
Optional
persistOptional flag to enable serialization of banned clients to persistent storage (e.g., hard drive).
The unique name of the policy within the swarm.
Optional
setOptional function to set the list of banned clients. Overrides default ban list management if provided.
An array of session IDs to ban.
The unique name of the policy.
The unique name of the swarm.
A promise that resolves when the ban list is updated, or void if synchronous.
Optional
validateOptional function to validate incoming messages against custom policy rules. Overrides default validation if provided.
The incoming message to validate.
The unique session ID of the client sending the message.
The unique name of the policy.
The unique name of the swarm.
True if the input is valid, false otherwise, synchronously or asynchronously.
Optional
validateOptional function to validate outgoing messages against custom policy rules. Overrides default validation if provided.
The outgoing message to validate.
The unique session ID of the client receiving the message.
The unique name of the policy.
The unique name of the swarm.
True if the output is valid, false otherwise, synchronously or asynchronously.
Interface representing the schema for configuring a policy. Defines how policies enforce rules and manage bans within the swarm.