1using System.Collections.Generic;
 
    3using System.Threading.Tasks;
 
   13        public ValueTask 
HandleEvent(
EventType eventType, IEnumerable<string?> parameters, 
bool deploymentPipeline, CancellationToken cancellationToken)
 
   14            => ValueTask.CompletedTask;
 
   17        public ValueTask? 
HandleCustomEvent(
string eventName, IEnumerable<string?> parameters, CancellationToken cancellationToken)
 
   18            => ValueTask.CompletedTask;
 
 
No-op implementation of IEventConsumer.
 
ValueTask? HandleCustomEvent(string eventName, IEnumerable< string?> parameters, CancellationToken cancellationToken)
Handles a given custom event.A ValueTask representing the running operation if the event was triggere...
 
ValueTask HandleEvent(EventType eventType, IEnumerable< string?> parameters, bool deploymentPipeline, CancellationToken cancellationToken)
Handle a given eventType .A ValueTask representing the running operation.
 
Consumes EventTypes and takes the appropriate actions.
 
EventType
Types of events. Mirror in tgs.dm. Prefer last listed name for script.