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
|
|
|
|
|
{
|
2021-09-05 13:58:33 -04:00
|
|
|
|
Task<UserWithDataToSync> ProcessAsync(UserWithDataToSync userWithTweetsToSync, CancellationToken ct);
|
2020-07-16 01:19:41 -04:00
|
|
|
|
}
|
|
|
|
|
}
|