Click or drag to resize

TickHistoryOnDemand Methods

The TickHistoryOnDemand type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodExtractTickHistory(String, String, String, String, String, String)
ExtractTickHistory
Public methodExtractTickHistory(String, String, String, String, String, String, Object)
ExtractTickHistory
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodCode examplesetWaitUntilDoneMode
Set whether or not to wait until a BaseDataFrame is done downloading and parsing before returning data. If not in waitUntilDone mode, when a DataRequest call is made a BaseDataFrame is immediately returned representing the response from OnDemand servers as it arrives. The BaseDataFrame should not be accessed until it's isDone member variable is set to true
Examples
BaseDataFrame df = new BaseDataFrame(log, ',', parent.getConfig());
while(!df.isDoneParsing()) {
    Thread.Sleep(20);
}
// access the data frame here
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also