Click or drag to resize
RiakEndPoint Class
Represents a connection to a Riak node, and allows operations to be performed with that connection. Partial abstract implementation of IRiakEndPoint.
Inheritance Hierarchy

Namespace:  RiakClient
Assembly:  RiakClient (in RiakClient.dll) Version: f9bb17a3f8ff6940b88010a52f202e3d55fe25c5
Syntax
public abstract class RiakEndPoint : IRiakEndPoint, 
	IDisposable

The RiakEndPoint type exposes the following members.

Constructors
  NameDescription
Protected methodRiakEndPoint
Initializes a new instance of the RiakEndPoint class
Top
Properties
  NameDescription
Protected propertyDefaultRetryCount
The max number of retry attempts to make when the client encounters ResultCode.NoConnections or ResultCode.CommunicationError errors.
Public propertyRetryWaitTime
Represents the TimeSpan to wait inbetween retry attempts.
Top
Methods
  NameDescription
Public methodCreateClient
Creates a new instance of RiakClient.
Public methodDispose
Releases all resources used by the RiakEndPoint class.
Protected methodDispose(Boolean)
Releases the unmanaged resources used by the RiakEndPoint and optionally releases the managed resources
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUseConnection(FuncIRiakConnection, RiakResult, Int32)
Executes a delegate function using a IRiakConnection, and returns the results. Retries if possible for certain error states.
Public methodUseConnectionTResult(FuncIRiakConnection, RiakResultTResult, Int32)
Executes a delegate function using a IRiakConnection, and returns the results. Retries if possible for certain error states.
Protected methodUseConnectionTRiakResult(FuncIRiakConnection, TRiakResult, FuncResultCode, String, Boolean, TRiakResult, Int32)
Public methodUseDelayedConnectionTResult
Executes a delegate function using a IRiakConnection, and returns the results. Retries if possible for certain error states. This method is used over UseConnection(FuncIRiakConnection, RiakResult, Int32) to keep a connection open to receive streaming results.
Top
See Also