Click or drag to resize

IInvocable Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
An IInvocable object is a portable object that can be invoked on the remote cluster member to which the client is connected and can optionally register a return value for the invocation.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IInvocable : IPortableObject

The IInvocable type exposes the following members.

Properties
  NameDescription
Public propertyResult
The result from the invocation of this object.
Top
Methods
  NameDescription
Public methodInit
Called by the IInvocationService exactly once on this IInvocable object as part of its initialization.
Public methodReadExternal
Restore the contents of a user type instance by reading its state using the specified IPofReader object.
(Inherited from IPortableObject.)
Public methodWriteExternal
Save the contents of a POF user type instance by writing its state using the specified IPofWriter object.
(Inherited from IPortableObject.)
Top
Remarks
When an IInvocable object is received for execution, the order of execution is:
  • The IInvocable object is deserialized by the IInvocationService.
  • The IInvocationService provides a reference to itself to the IInvocable object by calling the init method.
  • The IInvocationService invokes the IInvocable object by calling the run method.
  • If the IInvocationService is responsible for returning a value from the invocation, it obtains the value from the Result property.
See Also