using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using BirdsiteLive.Pipeline.Models; namespace BirdsiteLive.Pipeline.Contracts { public interface IRetrieveFollowersProcessor { Task> ProcessAsync( UserWithDataToSync[] userWithTweetsToSyncs, CancellationToken ct ); //IAsyncEnumerable ProcessAsync(UserWithTweetsToSync[] userWithTweetsToSyncs, CancellationToken ct); } }