Was a little inspired. Now we have a database (self populating) of imdb id's - why shouldn't we actually have the ability to scrape any other instance of torrentio, or knightcrawler? Also restructured the producer to be vertically sliced to make it easier to work with Too much flicking back and forth between Jobs and Crawlers when configuring
6 lines
191 B
C#
6 lines
191 B
C#
namespace Producer.Features.Amqp;
|
|
|
|
public interface IMessagePublisher
|
|
{
|
|
Task<bool> PublishAsync(IReadOnlyCollection<Torrent> torrents, CancellationToken cancellationToken = default);
|
|
} |