public abstract class ServiceHostBase : BackgroundService
Public MustInherit Class ServiceHostBase
Inherits BackgroundService
public ref class ServiceHostBase abstract : public BackgroundService
Gemstone.Timeseries.ServiceHostBase = function();
Type.createClass(
'Gemstone.Timeseries.ServiceHostBase',
Microsoft.Extensions.Hosting.BackgroundService);
ServiceHostBase | Initializes a new instance of the ServiceHostBase class |
ExecuteTask |
Gets the Task that executes the background operation.
(Inherited from BackgroundService) |
Dispose | (Inherited from BackgroundService) |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
ExecuteAsync |
This method is called when the IHostedService starts. The implementation should return a task that represents
the lifetime of the long running operation(s) being performed.
(Inherited from BackgroundService) |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
StartAsync |
Triggered when the application host is ready to start the service.
(Inherited from BackgroundService) |
StopAsync |
Triggered when the application host is performing a graceful shutdown.
(Inherited from BackgroundService) |
ToString | Returns a string that represents the current object. (Inherited from Object) |