Class AbstractWorkerListener
This class provides a no-op implementation of the interface methods in IWorkerListener.
It is provided as a convenience to callers who only want to implement specific methods.
Inheritance
System.Object
AbstractWorkerListener
Assembly: DeephavenOpenAPI.dll
Syntax
public abstract class AbstractWorkerListener : object, IWorkerListener
Methods
OnClosed(IWorkerSession, UInt16, String)
Declaration
public virtual void OnClosed(IWorkerSession workerSession, ushort code, string err)
Parameters
Type |
Name |
Description |
IWorkerSession |
workerSession |
|
System.UInt16 |
code |
|
System.String |
err |
|
OnError(IWorkerSession, Exception)
Declaration
public virtual void OnError(IWorkerSession workerSession, Exception ex)
Parameters
OnLogMessage(IWorkerSession, LogMessage)
Declaration
public virtual void OnLogMessage(IWorkerSession workerSession, LogMessage logMessage)
Parameters
OnOpen(IWorkerSession)
Declaration
public virtual void OnOpen(IWorkerSession workerSession)
Parameters
OnPing(IWorkerSession)
Declaration
public virtual void OnPing(IWorkerSession workerSession)
Parameters
Implements