Click or drag to resize

IAddressProvider Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
The IAddressProvider is an interface that serves as a means to provide addresses to a consumer.

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

The IAddressProvider type exposes the following members.

Properties
  NameDescription
Public propertyNextAddress
Next available address to use.
Top
Methods
  NameDescription
Public methodAccept
This method should be called by the client immediately after it determines that it can successfully use an address returned by the NextAddress.
Public methodReject
This method should be called by the client immediately after it determines that an attempt to use an address returned by the NextAddress has failed.
Top
Remarks
Simple implementations could be backed by a static list; more complex ones could use dynamic discovery protocols.
See Also