2021-02-08 16:51:19 +08:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline
|
|
|
|
{
|
|
|
|
public interface ISimpleProcessingRule : IProcessingRule
|
|
|
|
{
|
2021-03-09 00:50:13 +08:00
|
|
|
void Run(FlvProcessingContext context, Action next);
|
2021-02-08 16:51:19 +08:00
|
|
|
}
|
|
|
|
}
|