ICampaignHandler
ICampaignHandler Interface
Overview
The ICampaignHandler
interface defines the structure for campaign handlers, which determine if they can handle specific campaigns and execute them asynchronously.
CanHandleCampaign
bool CanHandleCampaign(CampaignRequest request)
Determines whether the handler can process the given campaign request.
HandleCampaignAsync
UniTask<CampaignResult> HandleCampaignAsync(CampaignRequest request, CancellationToken cancellationToken)
Handles the campaign asynchronously.
CampaignHandler<T> Abstract Class
Overview
The CampaignHandler<T>
abstract class provides a base implementation of the ICampaignHandler
interface for generic campaign type.
CanHandleCampaign
bool CanHandleCampaign(CampaignRequest request)
{
return request.Campaign is T typed && CanHandleCampaign(request, typed);
}
Checks whether the handler can process the campaign request based on its type.
CanHandleCampaign (Overridable)
protected virtual bool CanHandleCampaign(CampaignRequest request, T campaign)
Provides a customizable check for handling a campaign of type T
.
HandleCampaignAsync
abstract UniTask<CampaignResult> HandleCampaignAsync(CampaignRequest request, CancellationToken cancellationToken)
Processes the campaign asynchronously. This method must be implemented by derived classes.