Package hermes.fix

Examples of hermes.fix.ChainByClOrdID


    * @see hermes.browser.tasks.Task#run()
    */
   public void invoke() throws Exception
   {
      int nmessages = 0;
      ChainByClOrdID chain = new ChainByClOrdID(source) ;
     
      try
      {
         nmessages = chain.filterByClOrdID(clOrdID, target, startRow) ;
      }
      catch (Exception ex)
      {
         log.error("chain stopped: " + ex.getMessage());
      }
View Full Code Here


   private ChainByClOrdID chain ;
  
   public ChainByClOrdIDAction(JideMenu menu, FIXMessageTable table)
   {
      this.table = table;
      this.chain = new ChainByClOrdID(table) ;

      putValue(Action.NAME, "By ClOrdID...");
      putValue(Action.SHORT_DESCRIPTION, "Follow messages related to this order");

      table.getSelectionModel().addListSelectionListener(new ListSelectionListener()
View Full Code Here

TOP

Related Classes of hermes.fix.ChainByClOrdID

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.