You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.0 KiB
75 lines
2.0 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
using TouchSocket.Core; |
|
|
|
namespace TouchSocket.Sockets |
|
{ |
|
/// <summary> |
|
/// ServicePlugin |
|
/// </summary> |
|
public class ServicePlugin<TService> : PluginBase, IServicePlugin |
|
{ |
|
/// <inheritdoc cref="IServicePlugin.OnStarted(object, ServiceStateEventArgs)"/> |
|
protected virtual void OnStarted(TService sender, ServiceStateEventArgs e) |
|
{ |
|
|
|
} |
|
|
|
/// <inheritdoc cref="IServicePlugin.OnStartedAsync(object, ServiceStateEventArgs)"/> |
|
protected virtual Task OnStartedAsync(TService sender, ServiceStateEventArgs e) |
|
{ |
|
return EasyTask.CompletedTask; |
|
} |
|
|
|
/// <inheritdoc cref="IServicePlugin.OnStoped(object, ServiceStateEventArgs)"/> |
|
protected virtual void OnStoped(TService sender, ServiceStateEventArgs e) |
|
{ |
|
|
|
} |
|
|
|
/// <inheritdoc cref="IServicePlugin.OnStopedAsync(object, ServiceStateEventArgs)"/> |
|
protected virtual Task OnStopedAsync(TService sender, ServiceStateEventArgs e) |
|
{ |
|
return EasyTask.CompletedTask; |
|
} |
|
|
|
void IServicePlugin.OnStarted(object sender, ServiceStateEventArgs e) |
|
{ |
|
this.OnStarted((TService)sender, e); |
|
} |
|
|
|
Task IServicePlugin.OnStartedAsync(object sender, ServiceStateEventArgs e) |
|
{ |
|
return this.OnStartedAsync((TService)sender, e); |
|
} |
|
|
|
void IServicePlugin.OnStoped(object sender, ServiceStateEventArgs e) |
|
{ |
|
this.OnStoped((TService)sender, e); |
|
} |
|
|
|
Task IServicePlugin.OnStopedAsync(object sender, ServiceStateEventArgs e) |
|
{ |
|
return this.OnStopedAsync((TService)sender, e); |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// TcpServicePlugin |
|
/// </summary> |
|
public class TcpServicePlugin : ServicePlugin<TcpService> |
|
{ |
|
|
|
} |
|
|
|
/// <summary> |
|
/// UdpServicePlugin |
|
/// </summary> |
|
public class UdpServicePlugin : ServicePlugin<UdpSession> |
|
{ |
|
|
|
} |
|
}
|
|
|