Method | Description | |
---|---|---|
AddTopic ( |
Allows adding of the TopicInfo structure to the map.
|
|
ContainsColumn ( string tab, string sym, string col ) : bool |
Verifies whether given column for given symbol in given table is mapped to some topic already
|
|
ContainsSymbol ( string tab, string sym ) : bool |
Verifies whether symbol for given table is already present in internal mappings.
|
|
ContainsTopic ( |
Verifies whether given topic exists in internal mappings
|
|
GetMapKeys ( |
Provides mapping between given topic id from Excel RTD and table,symbol,column from kdb+
|
|
GetSymbols ( string tab ) : string[] |
Provides means of getting all symbols for given table that are mapped to some topic already.
|
|
GetTables ( ) : IEnumerable |
Lists all the tables that contain mapping for Excel topic ids for RTD.
|
|
GetTopicCount ( string tab, string sym ) : int |
Counts topics connected with given table and symbol
|
|
GetTopics ( string tab, string sym, string col ) : IEnumerable |
Provides mapping between tab-sym-col triple and list of Excel topic ids for RTD formula. Topics connected with historical values for given symbol are kept together with the Topic for the symbol itself.
|
|
RemoveTopic ( |
Removes given topic from internal mpapings
|
public AddTopic ( |
||
ti | object to be stored in map | |
return | void |
public ContainsColumn ( string tab, string sym, string col ) : bool | ||
tab | string | table |
sym | string | symbol |
col | string | column |
return | bool |
public ContainsSymbol ( string tab, string sym ) : bool | ||
tab | string | table |
sym | string | symbol |
return | bool |
public ContainsTopic ( |
||
topic | topic id | |
return | bool |
public GetMapKeys ( |
||
topic | RTD formula topic id | |
return | Tuple |
public GetSymbols ( string tab ) : string[] | ||
tab | string | table |
return | string[] |
public GetTopicCount ( string tab, string sym ) : int | ||
tab | string | table |
sym | string | symbol |
return | int |
public GetTopics ( string tab, string sym, string col ) : IEnumerable |
||
tab | string | table |
sym | string | symbol |
col | string | column |
return | IEnumerable |
public RemoveTopic ( |
||
topic | topic id to be removed | |
return | void |