mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace BililiveRecorder.Flv.Pipeline
|
|
{
|
|
public interface IProcessingPipelineBuilder
|
|
{
|
|
IServiceCollection ServiceCollection { get; }
|
|
|
|
IProcessingPipelineBuilder AddRule(Func<ProcessingDelegate, IServiceProvider, ProcessingDelegate> rule);
|
|
|
|
ProcessingDelegate Build();
|
|
}
|
|
}
|