Click or drag to resize

IService Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
This IService interface represents a controllable service that operates in a clustered network environment.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IService : IService, 
	IControllable

The IService type exposes the following members.

Properties
  NameDescription
Public propertyInfo
Gets the IServiceInfo object for this IService.
Public propertyIsRunning
Determine whether or not the controllable service is running.
(Inherited from IControllable.)
Public propertySerializer
The ISerializer used to serialize and deserialize objects by this IService.
Public propertyUserContext
Gets or sets the user context object associated with this IService.
Top
Methods
  NameDescription
Public methodConfigure
Configure the controllable service.
(Inherited from IControllable.)
Public methodShutdown
Stop the controllable service.
(Inherited from IControllable.)
Public methodStart
Start the controllable service.
(Inherited from IControllable.)
Public methodStop
Hard-stop the controllable service.
(Inherited from IControllable.)
Top
Events
  NameDescription
Public eventMemberJoined
Invoked when an IMember has joined the service.
Public eventMemberLeaving
Invoked when an IMember is leaving the service.
Public eventMemberLeft
Invoked when an IMember has left the service.
Public eventServiceStarted
Invoked when IService has started.
(Inherited from IService.)
Public eventServiceStarting
Invoked when IService is starting.
(Inherited from IService.)
Public eventServiceStopped
Invoked when IService has stopped.
(Inherited from IService.)
Public eventServiceStopping
Invoked when IService is stopping.
(Inherited from IService.)
Top
See Also