mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 16:27:26 +08:00
25 lines
712 B
C#
25 lines
712 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace osu.Game.Online
|
|
{
|
|
public abstract class SocketClient : IAsyncDisposable
|
|
{
|
|
public event Func<Exception?, Task>? Closed;
|
|
|
|
protected Task InvokeClosed(Exception? exception) => Closed?.Invoke(exception) ?? Task.CompletedTask;
|
|
|
|
public abstract Task StartAsync(CancellationToken cancellationToken);
|
|
|
|
public virtual ValueTask DisposeAsync()
|
|
{
|
|
Closed = null;
|
|
return new ValueTask(Task.CompletedTask);
|
|
}
|
|
}
|
|
}
|