FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | MEMBER | ACTION | DETAIL: IMPORT | CONSTANT | MEMBER | ACTION |
Action Summary | |
---|---|
void |
commit()
Try to commit changes from this Row back to the table, which could result in an exception being thrown if the Row is not up to date. |
void |
copy(com.apama.memorystore.Row other)
Copy the contents of the specified other Row into this one. |
boolean |
getBoolean(string name)
Get the value of the specified field in this row (must only be used on boolean fields). |
decimal |
getDecimal(string name)
Get the value of the specified field in this row (must only be used on decimal fields). |
float |
getFloat(string name)
Get the value of the specified field in this row (must only be used on float fields). |
integer |
getInteger(string name)
Get the value of the specified field in this row (must only be used on integer fields). |
string |
getKey()
Get the key for this Row. |
string |
getStoreName()
Get the name of the Store that contains this Row's Table. |
string |
getString(string name)
Get the value of the specified field in this row (must only be used on string fields). |
string |
getTableName()
Get the name of the Table that contains this Row. |
boolean |
inTable()
Indicate whether this row was in the table when the Row was created or updated. |
void |
remove()
Mark the row for deletion when the table is committed. |
void |
setBoolean(string name, boolean b)
Set the value of the specified field in this row (must only be used on boolean fields). |
void |
setDecimal(string name, decimal d)
Set the value of the specified field in this row (must only be used on decimal fields). |
void |
setFloat(string name, float f)
Set the value of the specified field in this row (must only be used on float fields). |
void |
setInteger(string name, integer i)
Set the value of the specified field in this row (must only be used on integer fields). |
void |
setString(string name, string s)
Set the value of the specified field in this row (must only be used on string fields). |
boolean |
tryCommit()
Try to commit changes from this Row back to the table, returning false if the Row is not up to date. |
boolean |
tryCommitOrUpdate()
Try to commit, or update if not. |
void |
update()
Update the local Row event to reflect the current state of the shared MemoryStore table, losing any local modifications. |
Action Detail |
---|
void commit()Try to commit changes from this Row back to the table, which could result in an exception being thrown if the Row is not up to date.
void copy(com.apama.memorystore.Row other)Copy the contents of the specified other Row into this one.
boolean getBoolean(string name)Get the value of the specified field in this row (must only be used on boolean fields).
decimal getDecimal(string name)Get the value of the specified field in this row (must only be used on decimal fields).
float getFloat(string name)Get the value of the specified field in this row (must only be used on float fields).
integer getInteger(string name)Get the value of the specified field in this row (must only be used on integer fields).
string getKey()Get the key for this Row.
string getStoreName()Get the name of the Store that contains this Row's Table.
string getString(string name)Get the value of the specified field in this row (must only be used on string fields).
string getTableName()Get the name of the Table that contains this Row.
boolean inTable()Indicate whether this row was in the table when the Row was created or updated.
void remove()Mark the row for deletion when the table is committed.
void setBoolean(string name, boolean b)Set the value of the specified field in this row (must only be used on boolean fields).
void setDecimal(string name, decimal d)Set the value of the specified field in this row (must only be used on decimal fields).
void setFloat(string name, float f)Set the value of the specified field in this row (must only be used on float fields).
void setInteger(string name, integer i)Set the value of the specified field in this row (must only be used on integer fields).
void setString(string name, string s)Set the value of the specified field in this row (must only be used on string fields).
boolean tryCommit()Try to commit changes from this Row back to the table, returning false if the Row is not up to date.
boolean tryCommitOrUpdate()Try to commit, or update if not.
void update()Update the local Row event to reflect the current state of the shared MemoryStore table, losing any local modifications.
FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | MEMBER | ACTION | DETAIL: IMPORT | CONSTANT | MEMBER | ACTION |