| FRAMES NO FRAMES | |||||||
| |||||||
| SUMMARY: IMPORT | CONSTANT | FIELD | ACTION | DETAIL: IMPORT | CONSTANT | FIELD | ACTION | ||||||
| Action summary | |
|---|---|
com.apama.memorystore.Row | add(string key)Add the table Row with the specified key. |
com.apama.memorystore.Iterator | begin()Return an iterator to the beginning of the Table. |
void | clear()Remove all rows from the table. |
integer | enqueueColumn(string fieldName)Send an event for each row in the table, taken by parsing the string data in the specified table field/column as an event string. |
com.apama.memorystore.Row | get(string key)Get the table Row with the specified key. |
integer | getFieldIndex(string fieldName)Return the index of a field. |
sequence<string> | getKeys()Returns a sequence that contains the keys for all the rows in this table. |
string | getStoreName()Get the name of the Store that contains this table. |
string | getTableName()Get the name of this Table. |
boolean | hasKey(string key)Indicate whether or not a row with the specified key is present in the table. |
void | mutate(string key, action<com.apama.memorystore.Row> a)Change the row with the specified key by applying an action to it. |
void | mutateAll(action<com.apama.memorystore.Row> a)Mutate all rows in the Table by applying the specified action. |
integer | persist()Persist this table's committed changes back to stable storage, asynchronously. |
void | remove(string key)Remove the specified row from the table. |
| Action detail |
|---|
com.apama.memorystore.Row add(string key)Add the table Row with the specified key.
com.apama.memorystore.Iterator begin()Return an iterator to the beginning of the Table.
void clear()Remove all rows from the table.
integer enqueueColumn(string fieldName)Send an event for each row in the table, taken by parsing the string data in the specified table field/column as an event string.
com.apama.memorystore.Row get(string key)Get the table Row with the specified key.
integer getFieldIndex(string fieldName)Return the index of a field.
sequence<string> getKeys()Returns a sequence that contains the keys for all the rows in this table.
string getStoreName()Get the name of the Store that contains this table.
string getTableName()Get the name of this Table.
boolean hasKey(string key)Indicate whether or not a row with the specified key is present in the table.
void mutate(string key, action<com.apama.memorystore.Row> a)Change the row with the specified key by applying an action to it.
void mutateAll(action<com.apama.memorystore.Row> a)Mutate all rows in the Table by applying the specified action.
integer persist()Persist this table's committed changes back to stable storage, asynchronously.
void remove(string key)Remove the specified row from the table.
| FRAMES NO FRAMES | |||||||
| |||||||
| SUMMARY: IMPORT | CONSTANT | FIELD | ACTION | DETAIL: IMPORT | CONSTANT | FIELD | ACTION | ||||||