Fey fa91364b3b
Some checks failed
🚀 Pack skyscraper8 / make-zip (push) Failing after 25s
Refactored WNE Extraction.
2026-05-05 22:58:51 +02:00

17 lines
421 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper8.ReutersWne
{
internal interface IWneHandler
{
void OnWneStoryComplete(WneStoryProgress wneStoryProgress, Stream value);
void OnWneStoryDetect(uint embeddedSessionId);
void OnWneStoryFail(uint sessionId);
void OnWneStoryProgress(WneStoryProgress wneStoryProgress);
}
}