19 lines
518 B
C#
19 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using skyscraper8.Atsc.A331.Schema;
|
|
using skyscraper8.Ietf.FLUTE;
|
|
|
|
namespace skyscraper8.Atsc.A331
|
|
{
|
|
internal interface IAtsc3EventHandler
|
|
{
|
|
void OnAtsc3Detected();
|
|
void OnAtsc3ServiceList(sltType slt);
|
|
void OnAtsc3FileDelivery(IPEndPoint destination, ulong tsi, ulong toi, FluteListener targetListener, GuessedFluteDataType guessedFluteDataType, string outFileName);
|
|
}
|
|
}
|