Relativity.Transfer.Aspera.AsperaEventHandler
namespace Relativity.Transfer.Aspera
{
internal class AsperaEventHandler : IAsperaEventHandler, IDisposable
{
public AsperaEventHandler(ITransferRequest request, ITransferJobService service, ITransferLog log, AsperaClientConfiguration configuration);
public TransferStatus GetTransferStatus();
public void Dispose();
public void HandleEvent(AsperaEvent asperaEvent);
public void WaitStartJob(CancellationToken token, TimeSpan timeout);
public void WaitStopJob(CancellationToken token, TimeSpan timeout);
}
}