Uses of Class
biz.onixs.fix.parser.Message

Packages that use Message
biz.onixs.fix.engine   
biz.onixs.fix.engine.storage   
biz.onixs.fix.fast   
biz.onixs.fix.fastnew   
biz.onixs.fix.filter   
biz.onixs.fix.fixml   
biz.onixs.fix.parser   
biz.onixs.fix.parser.exception   
biz.onixs.fix.scheduler   
biz.onixs.fix.util   
 

Uses of Message in biz.onixs.fix.engine
 

Methods in biz.onixs.fix.engine that return Message
 Message MessageFactory.createMessage()
          Factory method to create new message.
 Message SessionImpl.findSentMessage(long messageSequenceNumber)
           
 Message Session.findSentMessage(long messageSequenceNumber)
          Deprecated. Please use Session.getStorage() instead.
 Message Engine.DynamicAcceptorArgs.getIncomingLogonMessage()
           
 Message Session.MessageEventArgs.getMsg()
          Returns event-related message.
 

Methods in biz.onixs.fix.engine with parameters of type Message
 void SessionImpl.connectAsInitiator(String host, int port, int heartBtInt, Message customLogonMsg, boolean setResetSeqNumFlag)
           
 void SessionImpl.enqueue(Message message)
           
 void SessionImpl.enqueue(Message message, long msgNum)
           
 void SessionImpl.enqueue(Message msg, long msgNum, boolean closeLink, boolean removePreviousMessages)
           
 boolean SessionImpl.enqueue(Message message, long timeout, TimeUnit unit)
           
 boolean SessionImpl.enqueueNB(Message message)
           
 boolean SessionImpl.enqueueNB(Message message, long msgNum)
           
 SessionImpl SessionManager.findAcceptor(Message logonMsg, InetAddress remoteAddress, int remotePort)
           
 void NumberedRawMsg.init(Message msg)
           
 void Session.logonAsInitiator(String host, int port, boolean setResetSeqNumFlag, Message customLogonMsg)
          Establishes FIX Connection as Initiator using the custom Logon message.
 void Session.logonAsInitiator(String host, int port, int heartBtInt, boolean setResetSeqNumFlag, Message customLogonMsg)
          Establishes FIX Connection as Initiator using the custom Logon message.
 void Session.logonAsInitiator(String host, int port, int heartBtInt, Message customLogonMsg)
          Establishes FIX Connection as Initiator using the custom Logon message.
 void Session.logonAsInitiator(String host, int port, Message customLogonMsg)
          Establishes FIX Connection as Initiator using the custom Logon message.
 boolean SessionImpl.onIncomingMsg(Message msg, biz.onixs.util.ByteBuffer rawMsg)
           
 void SessionImpl.send(Message message)
           
 void Session.send(Message message)
          Puts the message to the outgoing queue.
 boolean SessionImpl.send(Message message, long timeout, TimeUnit unit)
           
 boolean Session.send(Message message, long timeout, TimeUnit unit)
          Puts the message to the outgoing queue.
 boolean SessionImpl.sendNB(Message message)
           
 boolean Session.sendNB(Message message)
          Puts the message to the outgoing queue.
 void Engine.DynamicAcceptorArgs.setIncomingLogonMessage(Message incomingLogonMessage)
           
 void Session.MessageEventArgs.setMsg(Message msg)
           
 

Method parameters in biz.onixs.fix.engine with type arguments of type Message
 void SessionImpl.enqueue(List<Message> messages)
           
 boolean SessionImpl.enqueueNB(List<Message> messages)
           
 void SessionImpl.send(List<Message> messages)
           
 void Session.send(List<Message> messages)
          Puts the messages to the outgoing queue.
 boolean SessionImpl.sendNB(List<Message> messages)
           
 boolean Session.sendNB(List<Message> messages)
          Puts the messages to the outgoing queue.
 

Constructors in biz.onixs.fix.engine with parameters of type Message
Session.InboundApplicationMessageArgs(Message msg)
          Creates event data.
Session.InboundSessionMessageArgs(Message msg)
          Creates event data.
Session.MessageEventArgs(Message msg)
          Creates message-related event data.
Session.MessageResendingArgs(Message msg)
          Creates event data.
Session.OutboundApplicationMessageArgs(Message msg)
          Creates event data.
Session.OutboundSessionMessageArgs(Message msg)
          Creates event data.
 

Uses of Message in biz.onixs.fix.engine.storage
 

Methods in biz.onixs.fix.engine.storage that return Message
 Message TimingSessionStorage.getMessage(MessageDirection direction, long sequenceNumber)
           
 Message SessionStorage.getMessage(MessageDirection direction, long sequenceNumber)
          Returns last message with the specified direction and sequence number.
 Message NullSessionStorage.getMessage(MessageDirection direction, long sequenceNumber)
           
 Message MemoryBasedSessionStorage.getMessage(MessageDirection direction, long sequenceNumber)
           
 Message FileBasedSessionStorage.getMessage(MessageDirection direction, long sequenceNumber)
           
 

Methods in biz.onixs.fix.engine.storage that return types with arguments of type Message
 List<Message> TimingSessionStorage.getMessages(MessageDirection direction, long beginSequenceNumber, long endSequenceNumber)
           
 List<Message> SessionStorage.getMessages(MessageDirection direction, long beginSequenceNumber, long endSequenceNumber)
          Returns messages with the specified direction and sequence number interval.
 List<Message> NullSessionStorage.getMessages(MessageDirection direction, long beginSequenceNumber, long endSequenceNumber)
           
 List<Message> MemoryBasedSessionStorage.getMessages(MessageDirection direction, long beginSequenceNumber, long endSequenceNumber)
           
 List<Message> FileBasedSessionStorage.getMessages(MessageDirection direction, long beginSequenceNumber, long endSequenceNumber)
           
 

Methods in biz.onixs.fix.engine.storage with parameters of type Message
 void TimingSessionStorage.storeMessage(MessageDirection direction, Message message, biz.onixs.util.ByteBuffer rawMessage)
           
 void SessionStorage.storeMessage(MessageDirection direction, Message message, biz.onixs.util.ByteBuffer rawMessage)
          Stores message.
 void NullSessionStorage.storeMessage(MessageDirection direction, Message message, biz.onixs.util.ByteBuffer rawMessage)
           
 void MemoryBasedSessionStorage.storeMessage(MessageDirection direction, Message message, biz.onixs.util.ByteBuffer rawMessage)
           
 void FileBasedSessionStorage.storeMessage(MessageDirection direction, Message message, biz.onixs.util.ByteBuffer rawMessage)
           
 

Uses of Message in biz.onixs.fix.fast
 

Methods in biz.onixs.fix.fast that return Message
 Message FixMessageFactory.createMessage(String fixMessageType, Version fixVersion)
          Factory method to create new message.
 Message Decoder.decode(byte[] buffer)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(byte[] buffer, int offset)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(byte[] buffer, int offset, int count)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(biz.onixs.util.ByteBuffer buffer)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(biz.onixs.util.ByteBuffer buffer, int offset)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message DecodeResult.getFixMessage()
           
 

Methods in biz.onixs.fix.fast with parameters of type Message
 byte[] Encoder.encode(Message message, int templateId)
          Encodes the given FIX message into a FAST stream chunk.
 void DecodeResult.setFixMessage(Message fixMessage)
           
 

Uses of Message in biz.onixs.fix.fastnew
 

Methods in biz.onixs.fix.fastnew that return Message
 Message FixMessageFactory.createMessage(String fixMessageType, Version fixVersion)
          Factory method to create new message.
 Message Decoder.decode(byte[] buffer)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(byte[] buffer, int offset)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(byte[] buffer, int offset, int count)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(biz.onixs.util.ByteBuffer buffer)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message Decoder.decode(biz.onixs.util.ByteBuffer buffer, int offset)
          Decodes the given FAST stream chunk into the corresponding FIX Message.
 Message DecodeResult.getFixMessage()
           
 

Methods in biz.onixs.fix.fastnew with parameters of type Message
 byte[] Encoder.encode(Message message)
          Encodes the given FIX message into a FAST stream chunk.
The template is selected automatically with the max id for the specific FIX message type.
 byte[] Encoder.encode(Message message, int templateId)
          Encodes the given FIX message into a FAST stream chunk.
 void DecodeResult.setFixMessage(Message fixMessage)
           
 

Uses of Message in biz.onixs.fix.filter
 

Methods in biz.onixs.fix.filter with parameters of type Message
 boolean TypeMessageFilter.filter(Message message)
          Returns whether this message must be filtered.
 boolean NullMessageFilter.filter(Message message)
          Always returns not to filter.
 boolean MessageFilter.filter(Message message)
          Returns whether this message must be filtered.
 

Uses of Message in biz.onixs.fix.fixml
 

Methods in biz.onixs.fix.fixml that return Message
 Message FixmlConverter.fixml2fix(String fixmlMsg)
           
static Message Utils.readFixMessage(String fixFile)
           
 

Methods in biz.onixs.fix.fixml with parameters of type Message
 String FixmlConverter.fix2fixml(Message fixMsg)
           
 

Uses of Message in biz.onixs.fix.parser
 

Methods in biz.onixs.fix.parser with parameters of type Message
 void Message.init(Message rh)
           
static boolean MessageDiff.isSimilar(Message message, Message message2)
           
 

Constructors in biz.onixs.fix.parser with parameters of type Message
Message(Message rh)
           
MessageDiff(Message message, Message message2)
           
 

Uses of Message in biz.onixs.fix.parser.exception
 

Constructors in biz.onixs.fix.parser.exception with parameters of type Message
IncorrectNumInGroupCountForRepeatingGroupException(int nInstances, int refTag, int instanceIndex, Message msg)
           
IncorrectNumInGroupCountForRepeatingGroupException(int nInstances, int refTag, Message msg)
           
IncorrectNumInGroupCountForRepeatingGroupException(String comments, int nInstances, int refTag, Message msg)
           
InstanceIndexOutOfRangeException(int index, int nInstances, int numInGroupTag, int refTag, Message msg)
           
ParserException(String reason, int nInstancesTag, int instance, int refTag, int rejectReason, Message msg)
           
ParserException(String reason, int nInstancesTag, int instance, int refTag, Message msg)
           
ParserException(String reason, int refTag, int rejectReason, Message msg)
           
ParserException(String reason, int refTag, Message msg)
           
RequiredTagMissingException(int refTag, int NumInGroupTag, int instanceIndex, Message msg)
           
RequiredTagMissingException(int refTag, Message msg)
           
TagNotDefinedForThisMessageTypeException(int refTag, Message msg)
           
TagSpecifiedWithoutValue(int refTag, Message msg)
           
 

Uses of Message in biz.onixs.fix.scheduler
 

Methods in biz.onixs.fix.scheduler that return Message
 Message InitiatorConnection.getCustomLogonMessageObj()
          Returns custom logon message.
 

Methods in biz.onixs.fix.scheduler with parameters of type Message
 void InitiatorConnection.setCustomLogonMessageObj(Message customLogonMessageObj)
          Sets custom logon message.
 

Uses of Message in biz.onixs.fix.util
 

Methods in biz.onixs.fix.util that return types with arguments of type Message
static List<Message> FixUtils.cloneMessages(List<Message> messages)
           
 

Method parameters in biz.onixs.fix.util with type arguments of type Message
static List<Message> FixUtils.cloneMessages(List<Message> messages)
           
 



Copyright © 2005-2012 Onix Solutions. All Rights Reserved.