AMPS C# Client
5.3.3.4
AMPS C# Client for .NET
|
▼NAMPS | |
▼NClient | A simple ServerChooser that keeps a list of AMPS instances and Authenticators, and advances to the next one when failure occurs |
►NExceptions | |
►NFields | |
CAuthenticator | |
►CBlockPublishStore | |
►CBookmarkRingBuffer | |
CBookmarkStore | |
CBookmarkStoreResizeHandler | |
►CClient | |
CClientDisconnectHandler | |
CActionDisconnectHandler | Allows the use of an Action (i.e. lambda function with no return value) in any context where a ClientDisconnectHandler may be used |
CCommand | Command is an encapsulation of a single AMPS command sent by the client. Using Command you can build valid commands to be executed either synchronously or asynchronously via the Client execute() and executeAsync() methods. Command is designed to be used as a "builder" enabling AMPS commands to be built easily, for example: |
CCommandId | Used to give a unique identifier to a Command. This Id can be used to reference the command later, such as when unsubscribing a subscription command |
CCompletionListener | |
CCompositeMessageBuilder | Used to create payloads for AMPS composite messages, which are messages with a number of parts where each part is a complete message of a specific message type. For example, a composite message type of "composite-json-binary" may be declared on the server that combines a set of JSON headers with an opaque binary payload. CompositeMessageBuilder makes it easy to assemble this payload |
CCompositeMessageParser | Used to retrieve individual message parts from AMPS composite messages, which are messages where the data contains a number of parts and each part is a complete message of a specific message type. For example, a composite message type of "composite-json-binary" may be declared on the server that combines a set of JSON headers with an opaque binary payload. CompositeMessageParser makes it easy to retrieve the parts of a composite message from the composite message payload |
CConflatingRecoveryPointAdapter | |
CConnectionInfo | |
CDefaultAuthenticator | |
CDefaultBookmarkStore | A no-op default implementation of the BookmarkStore interface that does nothing |
CDefaultCompletionListener | |
CDefaultDisconnectHandler | A default no-op implementation of the ClientDisconnectHandler and TransportDisconnectHandler interfaces that does nothing |
CDefaultMessageHandler | A defualy no-op implementation of the MessageHandler interface that does nothing |
CDefaultServerChooser | |
CDefaultSubscriptionManager | A no-op implementation of the SubscriptionManager interface that does nothing |
CDynamicRecoveryPoint | |
CDynamicRecoveryPointFactory | |
►CExponentialDelayStrategy | ExponentialDelayStrategy is an implementation that exponentially "backs off" when reconnecting to the same server, including optional jitter when backing off and a maximum amount of time to attempt reconnection before giving up entirely |
CFailedWriteHandler | An interface for receiving information on messages that you've written, but for which the server indicates are not persisted because of a failure |
CFailedWriteHandlerV4 | An interface for receiving information on messages that you've written, but for which the server indicates are not persisted because of a failure |
CFIXBuilder | Used to build up message strings for FIX |
►CFixedDelayStrategy | |
CFixedRecoveryPoint | |
CFixedRecoveryPointFactory | |
CFIXMessage | |
CFIXProtocol | Implements the Protocol interface. Used to parse a byte stream as a series of messages. The byte stream must use the AMPS FIX protocol |
CFIXProtocolParser | Implements the ProtocolParser interface. Parses a byte stream using FIX protocol |
CFIXShredder | A parser class which converts a FIX message into a dictionary |
►CHAClient | A highly-available AMPS Client object that automatically reconnects and re-subscribes to AMPS instances upon disconnect |
CHandleTimeoutStream | |
CHybridPublishStore | |
CJSONMessage | |
CJSONProtocol | Implements the Protocol interface. Used to parse a byte stream as a series of messgaes. The byte stream must used AMPS FIX protocol |
CJSONProtocolParser | Implements the ProtocolParser interface. Parses a byte stream using JSON Protocol (AMPS Protocol) |
CLoggedBookmarkStore | |
CMemoryBookmarkStore | |
CMemoryPublishStore | |
CMemoryStoreBuffer | MemoryStoreBuffer is a wrapper for a list that maintains positon. In order to do this, MemoryStoreBuffer uses a ByteBuffer |
CMemorySubscriptionManager | An in-memory implementation of SubscriptionManager. Used by HAClient |
►CMessage | All communication with AMPS occurs through passing Messages. The AMPS clients provide named convenience methods for core AMPS functionality. These named methods work by creating and sending Messages to AMPS |
CMessageHandler | Interface for classes that handle AMPS messages |
CActionMessageHandler | Allows usage of an Action (i.e. a lambda function with no return value) in the place of a MessageHandler throughout the AMPS api |
CMessageRouter | |
CMessageStream | Allows iteration over the messages in an AMPS SOW cache, or over the stream of messages on a subscription, or both |
CNVFIXBuilder | Used to build up message strings for NVFIX |
CNVFIXMessage | A message subclass used by NVFIXProtocolParser to aid in building Message instances parsed from the NVFIXProtocol. Generally not used directly by end user |
CNVFIXProtocol | |
CNVFIXProtocolParser | Implements the ProtocolParser interface and extends FIXProtocolParser class. Parses a byte stream using NVFIX protocol |
CNVFIXShredder | A parser class that converts an NVFIX message into a Dictionary |
CPool | |
CProperties | |
CProtocol | Interface representing an AMPS wire protocol. Classes that implement this interface aid in parsing a byte stream as a series of messages, formatted using one of the AMPS-supported protocols |
CProtocolFactory | Class which creates Protocols as well as registering and unregistering them from a Dictionary |
CProtocolParser | |
CPublishStore | |
CPublishStoreResizeHandler | |
CReconnectDelayStrategy | Reconnect delay strategy implementations are called by HAClient to determine how long to wait between attempts to connect or reconnect to a server. AMPS provides two predefined implementations:
FixedDelayStrategy</seelaso> |
CRecoveryPoint | |
CRecoveryPointFactory | |
CRecoveryPointAdapter | |
CRingBookmarkStore | |
CServerChooser | |
CSimpleReadBuffer | |
CSOWRecoveryPointAdapter | |
CStoreReplayer | |
CSOWDeleteTypes | |
CStore | |
CSubscriptionManager | |
CTCPSTransport | Implements a secure transport for communicating with AMPS over a SslStream |
CTCPSTransportImpl | |
CTCPTransport | |
CTCPTransportImpl | |
CThreadCreatedHandler | Interface for classes that handle AMPS messages |
CActionThreadCreatedHandler | Allows usage of an Action (i.e. a lambda function with no return value) in the place of a MessageHandler throughout the AMPS api |
CTransport | |
CTransportDisconnectHandler | |
CTransportFactory | |
CTransportTraceFilter | An implementation of TransportFilter that traces to a System.IO.TextWriter. To use, instantiate and hen pass to Transport's setTransportFilter, for example: Client client = new Client(...); client.connect(...); client.getTransport.setTransportFilter( new TransportTraceFilter(Console.out) ); |
CURIProperties | Provides a Properties interface to the parameters passed in a URI without depending on System.Web |
►CUtilities | |
CVersionInfo | An IComparable representation of the server's version |
CXMLMessage | |
CXMLProtocol | |
CXMLProtocolParser | |
CZlibIOStream | A System.IO.Stream wrapper around the ComponentAce zlib implementation which works bidirectionally and eliminates a data copy |
▼NComponentAce | |
▼NCompression | |
►NLibs |