Package | Description |
---|---|
org.quickfixj.jmx.mbean.session | |
quickfix |
Core QuickFIX/J classes.
|
quickfix.fix40 |
Message classes
|
quickfix.fix41 |
Message classes
|
quickfix.fix42 |
Message classes
|
quickfix.fix43 |
Message classes
|
quickfix.fix44 |
Message classes
|
quickfix.fix50 |
Message classes
|
quickfix.fix50sp1 |
Message classes
|
quickfix.fix50sp2 |
Message classes
|
quickfix.fixt11 |
Message classes
|
quickfix.mina |
MINA-related networking code.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SessionAdmin.doSend(Message message,
SessionID sessionID)
Helper method to be overridden by tests that handles sending out the message.
|
Modifier and Type | Interface and Description |
---|---|
interface |
FromAdminListener<T extends Message> |
interface |
FromAppListener<T extends Message> |
interface |
ToAppListener<T extends Message> |
Modifier and Type | Method and Description |
---|---|
<T extends Message> |
ApplicationFunctionalAdapter.addFromAdminListener(Class<T> clazz,
FromAdminListener<T> fromAdminListener)
Add a listener of fromAdmin operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.addFromAppListener(Class<T> clazz,
FromAppListener<T> fromAppListener)
Add a listener of fromApp operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.addToAdminListener(Class<T> clazz,
BiConsumer<T,SessionID> toAdminListener)
Add a type-safe BiConsumer of SessionID to listen to toAdmin operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.addToAppListener(Class<T> clazz,
ToAppListener<T> toAppListener)
Add a listener of toApp operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.removeFromAdminListener(FromAdminListener<T> fromAdminListener)
Remove a listener of fromAdmin operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.removeFromAppListener(FromAppListener<T> fromAppListener)
Remove a listener of fromApp operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.removeToAdminListener(BiConsumer<T,SessionID> toAdminListener)
Remove a BiConsumer of SessionID from toAdmin operation.
|
<T extends Message> |
ApplicationFunctionalAdapter.removeToAppListener(ToAppListener<T> toAppListener)
Remove a listener of toApp operation.
|
Modifier and Type | Method and Description |
---|---|
default Message |
MessageFactory.create(String beginString,
ApplVerID applVerID,
String msgType)
Creates a message for a specified type, FIX version, and ApplVerID.
|
Message |
DefaultMessageFactory.create(String beginString,
ApplVerID applVerID,
String msgType) |
Message |
MessageFactory.create(String beginString,
String msgType)
Creates a message for a specified type and FIX version
|
Message |
DefaultMessageFactory.create(String beginString,
String msgType) |
Message |
SessionState.dequeue(int sequence) |
Message |
InvalidMessage.getFixMessage() |
Message |
SessionState.getNextQueuedMessage() |
static Message |
MessageUtils.parse(MessageFactory messageFactory,
DataDictionary dataDictionary,
String messageString) |
static Message |
MessageUtils.parse(MessageFactory messageFactory,
DataDictionary dataDictionary,
String messageString,
boolean validateChecksum)
Utility method for parsing a message.
|
static Message |
MessageUtils.parse(Session session,
String messageString)
NOTE: This method is intended for internal use.
|
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID)
Process ("crack") a FIX message and call the registered handlers for that type, if any
|
void |
SessionState.enqueue(int sequence,
Message message) |
void |
ApplicationFunctionalAdapter.fromAdmin(Message message,
SessionID sessionId) |
void |
ApplicationAdapter.fromAdmin(Message message,
SessionID sessionId) |
void |
Application.fromAdmin(Message message,
SessionID sessionId)
This callback notifies you when an administrative message is sent from a
counterparty to your FIX engine.
|
void |
ApplicationFunctionalAdapter.fromApp(Message message,
SessionID sessionId) |
void |
ApplicationAdapter.fromApp(Message message,
SessionID sessionId) |
void |
Application.fromApp(Message message,
SessionID sessionId)
This callback receives messages for the application.
|
static SessionID |
MessageUtils.getReverseSessionID(Message fixMessage) |
static SessionID |
MessageUtils.getSessionID(Message fixMessage) |
void |
Session.next(Message message)
(Internal use only)
|
protected void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Fallback method that is called if no invokers are found.
|
boolean |
Session.send(Message message)
Send a message to a counterparty.
|
static boolean |
Session.sendToTarget(Message message)
Send a message to the session specified in the message's target
identifiers.
|
static boolean |
Session.sendToTarget(Message message,
SessionID sessionID)
Send a message to the session specified by the provided session ID.
|
static boolean |
Session.sendToTarget(Message message,
String qualifier)
Send a message to the session specified in the message's target
identifiers.
|
static boolean |
Session.sendToTarget(Message message,
String senderCompID,
String targetCompID)
Send a message to the session specified by the provided target company
ID.
|
static boolean |
Session.sendToTarget(Message message,
String senderCompID,
String targetCompID,
String qualifier)
Send a message to the session specified by the provided target company
ID.
|
void |
ApplicationFunctionalAdapter.toAdmin(Message message,
SessionID sessionId) |
void |
ApplicationAdapter.toAdmin(Message message,
SessionID sessionId) |
void |
Application.toAdmin(Message message,
SessionID sessionId)
This callback provides you with a peek at the administrative messages
that are being sent from your FIX engine to the counter party.
|
void |
ApplicationFunctionalAdapter.toApp(Message message,
SessionID sessionId) |
void |
ApplicationAdapter.toApp(Message message,
SessionID sessionId) |
void |
Application.toApp(Message message,
SessionID sessionId)
This is a callback for application messages that you are sending to a
counterparty.
|
void |
DataDictionary.validate(Message message)
Validate a message, including the header and trailer fields.
|
void |
DataDictionary.validate(Message message,
boolean bodyOnly)
Validate the message body, with header and trailer fields being validated conditionally.
|
Modifier and Type | Method and Description |
---|---|
void |
ApplicationFunctionalAdapter.addFromAdminListener(FromAdminListener<Message> fromAdminListener)
Add a listener of fromAdmin operation.
|
void |
ApplicationFunctionalAdapter.addFromAppListener(FromAppListener<Message> fromAppListener)
Add a listener of fromApp operation.
|
void |
ApplicationFunctionalAdapter.addToAdminListener(BiConsumer<Message,SessionID> toAdminListener)
Add a BiConsumer of SessionID to listen to toAdmin operation.
|
void |
ApplicationFunctionalAdapter.addToAppListener(ToAppListener<Message> toAppListener)
Add a listener of toApp operation.
|
Constructor and Description |
---|
InvalidMessage(Message fixMessage) |
InvalidMessage(String message,
Message fixMessage) |
InvalidMessage(String message,
Throwable cause,
Message fixMessage) |
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Class and Description |
---|---|
class |
Allocation |
class |
AllocationACK |
class |
Heartbeat |
class |
IndicationofInterest |
class |
Logon |
class |
Logout |
class |
Reject |
class |
ResendRequest |
class |
SequenceReset |
class |
TestRequest |
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Class and Description |
---|---|
class |
QuoteAcknowledgement |
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Class and Description |
---|---|
class |
IndicationOfInterest |
class |
MultilegOrderCancelReplaceRequest |
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Class and Description |
---|---|
class |
NetworkStatusRequest |
class |
NetworkStatusResponse |
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Class and Description |
---|---|
class |
Confirmation_Ack |
class |
DontKnowTradeDK |
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Method and Description |
---|---|
Message |
MessageFactory.create(String beginString,
String msgType) |
Modifier and Type | Method and Description |
---|---|
void |
MessageCracker.crack(Message message,
SessionID sessionID) |
void |
MessageCracker.onMessage(Message message,
SessionID sessionID)
Callback for quickfix.Message message.
|
Modifier and Type | Field and Description |
---|---|
static Message |
EventHandlingStrategy.END_OF_STREAM |
Modifier and Type | Method and Description |
---|---|
protected Message |
ThreadPerSessionEventHandlingStrategy.getNextMessage(quickfix.mina.QueueTracker<Message> queueTracker)
Get the next message from the messages
BlockingQueue . |
Modifier and Type | Method and Description |
---|---|
void |
ThreadPerSessionEventHandlingStrategy.MessageDispatchingThread.enqueue(Message message) |
void |
ThreadPerSessionEventHandlingStrategy.onMessage(Session quickfixSession,
Message message) |
void |
SingleThreadedEventHandlingStrategy.onMessage(Session quickfixSession,
Message message) |
void |
EventHandlingStrategy.onMessage(Session quickfixSession,
Message message) |
protected abstract void |
AbstractIoHandler.processMessage(org.apache.mina.core.session.IoSession ioSession,
Message message) |
Modifier and Type | Method and Description |
---|---|
protected Message |
ThreadPerSessionEventHandlingStrategy.getNextMessage(quickfix.mina.QueueTracker<Message> queueTracker)
Get the next message from the messages
BlockingQueue . |
Copyright © 2021. All rights reserved.