2020-07-16 01:19:41 -04:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using BirdsiteLive.Pipeline.Models;
|
|
|
|
|
|
|
|
|
|
namespace BirdsiteLive.Pipeline.Contracts
|
|
|
|
|
{
|
|
|
|
|
public interface ISendTweetsToFollowersProcessor
|
|
|
|
|
{
|
2020-07-22 19:27:25 -04:00
|
|
|
|
Task<UserWithTweetsToSync> ProcessAsync(UserWithTweetsToSync userWithTweetsToSync, CancellationToken ct);
|
2020-07-16 01:19:41 -04:00
|
|
|
|
}
|
|
|
|
|
}
|