xprt64/cqrs-es

View on GitHub
src/Dudulina/Scheduling/CommandScheduler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php


namespace Dudulina\Scheduling;


use Dudulina\Aggregate\AggregateDescriptor;

interface CommandScheduler
{
    public function scheduleCommand(ScheduledCommand $scheduledCommand, AggregateDescriptor $aggregateDescriptor, $commandMetadata = null);

    public function cancelCommand($commandId);
}