FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | MEMBER | ACTION | DETAIL: IMPORT | CONSTANT | MEMBER | ACTION |
Member summary | |
---|---|
dictionary<string, string> | config
A dictionary of configuration parameter names, and their corresponding value (as a string). |
dictionary<string, context> | configCtxs
A dictionary of configuration parameter names, and the corresponding context information. |
Action summary | |
---|---|
void |
addBooleanParam(string paramName, boolean paramValue)
This function adds a parameter name and its corresponding value (as a boolean) to the list of configuration parameters. |
void |
addContextParam(string paramName, context paramValue)
This function adds a parameter name and its corresponding context value to the list of configuration parameters. |
void |
addDecimalParam(string paramName, decimal paramValue)
This function adds a parameter name and its corresponding value (as a decimal) to the list of configuration parameters. |
void |
addFloatParam(string paramName, float paramValue)
This function adds a parameter name and its corresponding value (as a float) to the list of configuration parameters. |
void |
addIntegerParam(string paramName, integer paramValue)
This function adds a parameter name and its corresponding value (as an integer) to the list of configuration parameters. |
void |
addParam(string paramName, string paramValue)
This function adds a parameter name and its corresponding value (as a string) to the list of configuration parameters. |
void |
addStringDictionaryParam(string paramName, dictionary<string, string> paramValue)
This function adds a parameter name and its corresponding value (as a dictionary<string,string>) to the list of configuration parameters. |
void |
addStringSequenceParam(string paramName, sequence<string> paramValue)
This function adds a parameter name and its corresponding value (as a sequence<string>) to the list of configuration parameters. |
void |
clear()
This function clears any current set parameters from this event. |
boolean |
getBooleanParam(string paramName)
This function gets the value of a specified parameter name as a boolean type that has been added to this list of parameters. |
boolean |
getBooleanParamOr(string paramName, boolean alternative)
This function gets the value of a specified parameter name as a boolean type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided. |
context |
getContextParam(string paramName)
This function gets the value of a specified parameter name as a context type that has been added to this list of configuration parameters. |
context |
getContextParamOr(string paramName, context alternative)
This function gets the value of a specified parameter name as a context type that has been added to this list of configuration parameters. |
decimal |
getDecimalParam(string paramName)
This function gets the value of a specified parameter name as a decimal type that has been added to this list of parameters. |
decimal |
getDecimalParamOr(string paramName, decimal alternative)
This function gets the value of a specified parameter name as a decimal type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided. |
float |
getFloatParam(string paramName)
This function gets the value of a specified parameter name as a float type that has been added to this list of parameters. |
float |
getFloatParamOr(string paramName, float alternative)
This function gets the value of a specified parameter name as a float type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided. |
integer |
getIntegerParam(string paramName)
This function gets the value of a specified parameter name as a integer type that has been added to this list of parameters. |
integer |
getIntegerParamOr(string paramName, integer alternative)
This function gets the value of a specified parameter name as a integer type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided. |
string |
getParam(string paramName)
This function gets the value of a specified parameter name as a string type that has been added to this list of configuration parameters. |
string |
getParamOr(string paramName, string alternative)
This function gets the value of a specified parameter name as a string type that has been added to this list of configuration parameters. |
dictionary<string, string> |
getStringDictionaryParam(string paramName)
This function gets the value of a specified parameter name as a dictionary<string,string> type that has been added to this list of configuration parameters. |
dictionary<string, string> |
getStringDictionaryParamOr(string paramName, dictionary<string, string> alternative)
This function gets the value of a specified parameter name as a dictionary<string,string> type that has been added to this list of configuration parameters. |
sequence<string> |
getStringSequenceParam(string paramName)
This function gets the value of a specified parameter name as a sequence<string> type that has been added to this list of configuration parameters. |
sequence<string> |
getStringSequenceParamOr(string paramName, sequence<string> alternative)
This function gets the value of a specified parameter name as a sequence<string> type that has been added to this list of configuration parameters. |
boolean |
hasParam(string paramName)
This function allows the user to check whether the specified parameter name has been added to this list of configuration parameters. |
void |
mergeParams(com.apama.utils.Params newParams)
This function merges a list of provided parameters with the existing list of parameters, overriding any that were previously set. |
void |
removeParam(string paramName)
This function removes the specified parameter name from the list of configuration parameters. |
Member detail |
---|
dictionary<string, string> configA dictionary of configuration parameter names, and their corresponding value (as a string).
dictionary<string, context> configCtxsA dictionary of configuration parameter names, and the corresponding context information.
Action detail |
---|
void addBooleanParam(string paramName, boolean paramValue)This function adds a parameter name and its corresponding value (as a boolean) to the list of configuration parameters.
void addContextParam(string paramName, context paramValue)This function adds a parameter name and its corresponding context value to the list of configuration parameters.
void addDecimalParam(string paramName, decimal paramValue)This function adds a parameter name and its corresponding value (as a decimal) to the list of configuration parameters.
void addFloatParam(string paramName, float paramValue)This function adds a parameter name and its corresponding value (as a float) to the list of configuration parameters.
void addIntegerParam(string paramName, integer paramValue)This function adds a parameter name and its corresponding value (as an integer) to the list of configuration parameters.
void addParam(string paramName, string paramValue)This function adds a parameter name and its corresponding value (as a string) to the list of configuration parameters.
void addStringDictionaryParam(string paramName, dictionary<string, string> paramValue)This function adds a parameter name and its corresponding value (as a dictionary<string,string>) to the list of configuration parameters.
void addStringSequenceParam(string paramName, sequence<string> paramValue)This function adds a parameter name and its corresponding value (as a sequence<string>) to the list of configuration parameters.
void clear()This function clears any current set parameters from this event.
boolean getBooleanParam(string paramName)This function gets the value of a specified parameter name as a boolean type that has been added to this list of parameters.
boolean getBooleanParamOr(string paramName, boolean alternative)This function gets the value of a specified parameter name as a boolean type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided.
context getContextParam(string paramName)This function gets the value of a specified parameter name as a context type that has been added to this list of configuration parameters.
context getContextParamOr(string paramName, context alternative)This function gets the value of a specified parameter name as a context type that has been added to this list of configuration parameters.
decimal getDecimalParam(string paramName)This function gets the value of a specified parameter name as a decimal type that has been added to this list of parameters.
decimal getDecimalParamOr(string paramName, decimal alternative)This function gets the value of a specified parameter name as a decimal type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided.
float getFloatParam(string paramName)This function gets the value of a specified parameter name as a float type that has been added to this list of parameters.
float getFloatParamOr(string paramName, float alternative)This function gets the value of a specified parameter name as a float type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided.
integer getIntegerParam(string paramName)This function gets the value of a specified parameter name as a integer type that has been added to this list of parameters.
integer getIntegerParamOr(string paramName, integer alternative)This function gets the value of a specified parameter name as a integer type that has been added to this list of parameters If the specified parameter name is not in the dictionary, this action returns the alternative value provided.
string getParam(string paramName)This function gets the value of a specified parameter name as a string type that has been added to this list of configuration parameters.
string getParamOr(string paramName, string alternative)This function gets the value of a specified parameter name as a string type that has been added to this list of configuration parameters.
dictionary<string, string> getStringDictionaryParam(string paramName)This function gets the value of a specified parameter name as a dictionary<string,string> type that has been added to this list of configuration parameters.
dictionary<string, string> getStringDictionaryParamOr(string paramName, dictionary<string, string> alternative)This function gets the value of a specified parameter name as a dictionary<string,string> type that has been added to this list of configuration parameters.
sequence<string> getStringSequenceParam(string paramName)This function gets the value of a specified parameter name as a sequence<string> type that has been added to this list of configuration parameters.
sequence<string> getStringSequenceParamOr(string paramName, sequence<string> alternative)This function gets the value of a specified parameter name as a sequence<string> type that has been added to this list of configuration parameters.
boolean hasParam(string paramName)This function allows the user to check whether the specified parameter name has been added to this list of configuration parameters.
void mergeParams(com.apama.utils.Params newParams)This function merges a list of provided parameters with the existing list of parameters, overriding any that were previously set.
void removeParam(string paramName)This function removes the specified parameter name from the list of configuration parameters.
FRAMES NO FRAMES | |||||||
| |||||||
SUMMARY: IMPORT | CONSTANT | MEMBER | ACTION | DETAIL: IMPORT | CONSTANT | MEMBER | ACTION |