Tabnine Logo
DataEmitterSupport.getFlowID
Code IndexAdd Tabnine to your IDE (free)

How to use
getFlowID
method
in
org.marketcetera.module.DataEmitterSupport

Best Java code snippets using org.marketcetera.module.DataEmitterSupport.getFlowID (Showing top 6 results out of 315)

origin: org.marketcetera/core

@Override
public void requestData(DataRequest inRequest,
            DataEmitterSupport inSupport)
    throws RequestDataException
{
  dataSupport.put(inSupport.getFlowID(),
          inSupport);
}
/* (non-Javadoc)
origin: org.marketcetera/misc

@Override
public void requestData(DataRequest inRequest,
            DataEmitterSupport inSupport)
    throws RequestDataException
{
  synchronized(dataSupport) {
    dataSupport.put(inSupport.getFlowID(),
            inSupport);
  }
}
/* (non-Javadoc)
origin: org.marketcetera/misc

/**
 * Adds the flow handler for the data flow the table of requests and flows.
 *
 * @param inSupport the data flow support instance for the flow.
 * @param inFlowHandler the flow handler for the flow.
 */
private void addFlow(DataEmitterSupport inSupport,
           DataFlowHandler inFlowHandler) {
  mFlows.put(inSupport.getFlowID(), inFlowHandler);
}
origin: org.marketcetera/marketdata-exsim

/**
 * Create a new RequestData instance.
 *
 * @param inRequestMessage a <code>Message</code> value
 * @param inDataEmitterSupport a <code>DataEmitterSupport</code> value
 * @param inRequestId a <code>String</code> value
 * @param inMarketDataRequest a <code>MarketDataRequest</code> value
 * @param inRequestedInstruments a <code>List&lt;Instrument&gt;</code> value
 */
private RequestData(Message inRequestMessage,
          DataEmitterSupport inDataEmitterSupport,
          String inRequestId,
          MarketDataRequest inMarketDataRequest,
          List<Instrument> inRequestedInstruments)
{
  requestMessage = inRequestMessage;
  dataEmitterSupport = inDataEmitterSupport;
  description = RequestData.class.getSimpleName() + " [" + inDataEmitterSupport.getFlowID() + "]"; //$NON-NLS-1$ //$NON-NLS-2$
  requestId = inRequestId;
  requestedInstruments = inRequestedInstruments;
  marketDataRequest = inMarketDataRequest;
}
/**
origin: org.marketcetera/marketdata-exsim

requestsByRequestId.put(id,
            requestData);
requestsByDataFlowId.put(inSupport.getFlowID(),
             requestData);
if(!Session.sendToTarget(marketDataRequest,
             sessionId)) {
  requestsByRequestId.remove(id);
  requestsByDataFlowId.remove(inSupport.getFlowID());
  throw new StopDataFlowException(new I18NBoundMessage1P(Messages.CANNOT_REQUEST_DATA,
                              marketDataRequest));
origin: org.marketcetera/marketdata-exsim

if(!requestData.resubmitting) {
  requestsByRequestId.remove(messageWrapper.getRequestId());
  requestsByDataFlowId.remove(requestData.getDataEmitterSupport().getFlowID());
  I18NBoundMessage errorMessage;
  if(message.isSetField(quickfix.field.Text.FIELD)) {
org.marketcetera.moduleDataEmitterSupportgetFlowID

Javadoc

The flowID uniquely identifying this data flow.

Popular methods of DataEmitterSupport

  • send
    Sends the data to any downstream module
  • getRequestID
    The request ID associated with this request.
  • dataEmitError
    If the data emitter is facing an error that might inhibit it from being able to emit data.

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onRequestPermissionsResult (Fragment)
  • putExtra (Intent)
  • getResourceAsStream (ClassLoader)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • JFrame (javax.swing)
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now