Show / Hide Table of Contents

Interface INameService

This INameService interface represents a service that accepts connections from external clients(e.g. Coherence*Extend) and provides a name lookup service.

Inherited Members
IService.Info
IService.UserContext
IService.Serializer
IService.MemberJoined
IService.MemberLeaving
IService.MemberLeft
IService.ServiceStarting
IService.ServiceStarted
IService.ServiceStopping
IService.ServiceStopped
IControllable.Configure(IXmlElement)
IControllable.Start()
IControllable.IsRunning
IControllable.Shutdown()
IControllable.Stop()
Namespace: Tangosol.Net
Assembly: Coherence.dll
Syntax
public interface INameService : IService, IService, IControllable

Methods

Bind(string, object)

Binds a name to an object.

Declaration
void Bind(string name, object o)
Parameters
Type Name Description
string name

The name to bind; may not be empty.

object o

The object to bind; possibly null.

Lookup(string)

Retrieves the named object.

Declaration
object Lookup(string name)
Parameters
Type Name Description
string name

The name of the object to look up.

Returns
Type Description
object

The object bound to name.

Unbind(string)

Unbinds the named object.

Declaration
void Unbind(string name)
Parameters
Type Name Description
string name

The name of the object to unbind.

In this article
Back to top Copyright © 2000, 2024, Oracle and/or its affiliates.