BirdsiteLive/src/BirdsiteLive.Pipeline/Contracts/Federation/IRetrieveTweetsProcessor.cs

12 lines
349 B
C#
Raw Normal View History

2020-07-16 07:19:41 +02:00
using System.Threading;
using System.Threading.Tasks;
using BirdsiteLive.DAL.Models;
using BirdsiteLive.Pipeline.Models;
namespace BirdsiteLive.Pipeline.Contracts.Federation
2020-07-16 07:19:41 +02:00
{
public interface IRetrieveTweetsProcessor
{
Task<UserWithDataToSync[]> ProcessAsync(UserWithDataToSync[] syncTwitterUsers, CancellationToken ct);
2020-07-16 07:19:41 +02:00
}
}