9 lines
227 B
C#
9 lines
227 B
C#
namespace MxGateway.Server.Sessions;
|
|
|
|
public interface ISessionWorkerClientFactory
|
|
{
|
|
Task<MxGateway.Server.Workers.IWorkerClient> CreateAsync(
|
|
GatewaySession session,
|
|
CancellationToken cancellationToken);
|
|
}
|