Philadelphia 1.0.0 contains major API changes. See below for details.
-
FIXSession
is now calledFIXConnection
. This name better reflects the role of this class. -
FIXStatusListener
is now calledFIXConnectionStatusListener
. This name better reflects the role of this class. -
FIXField
does not exist anymore. UseFIXMessage#tagAt(int)
andFIXMessage#valueAt(int)
to directly access the tags and values in a message. Note that methods that operate on indexes have the "at" preposition in their names. -
FIXMessage#findField(int)
andFIXMessage#findIndex(int)
are now calledFIXMessage#valueOf(int)
andFIXMessage#indexOf(int)
, respectively. Note that methods that operate on tags have the "of" preposition in their names.