dfESPproject::publishToMAS( const char *name, language_t lang, const char *sourceCode, const char *description)
Parameter
|
Description
|
---|---|
name
|
The name of the module.
It is used to refer to the module in any subsequent method calls.
|
language
|
Specify either DS2 or
Python.
|
sourceCode
|
A string containing
the DS2 or Python source code of the module. See DS2 Programming for Event Stream Processing with SAS Micro Analytic Service and Python Programming for SAS Event Stream Processing with SAS Micro Analytic Service for information about programming
modules for Micro Analytic Service in SAS Event Stream Processing.
|
description
|
An optional string that
contains a description of the module’s purpose. Pass in NULL
to omit a description.
|
dfESPproject::publishFileToMAS( const char *name, language_t lang, const char *filePath, const char *description)
Parameter
|
Description
|
---|---|
name
|
The name of the module.
It is used to refer to the module in any subsequent method calls.
|
language
|
Specify either DS2 or
Python.
|
filePath
|
The path to the file
containing the DS2 or Python source code of the module, including
filename and extension. See DS2 Programming for Event Stream Processing with SAS Micro Analytic Service and Python Programming for SAS Event Stream Processing with SAS Micro Analytic Service for Micro Analytic Service in SAS
Event Stream Processing.
|
description
|
An optional string that
contains a description of the module’s purpose. Pass in NULL
to omit a description.
|
dfESPproject::replaceMASmodule( const char *name, language_t lang, const char *sourceCode, const char *description)
Parameter
|
Description
|
---|---|
name
|
The name of the module.
It is used to refer to the module in any subsequent method calls.
|
language
|
Specify either DS2 or
Python.
|
sourceCode
|
A string containing
the DS2 or Python source code with which to replace the existing code.
See DS2 Programming for Event Stream Processing with SAS Micro Analytic Service and Python Programming for SAS Event Stream Processing with SAS Micro Analytic Service for information about programming
modules for Micro Analytic Service in SAS Event Stream Processing.
|
description
|
An optional string that
contains a description of the module’s purpose. Pass in NULL
to omit a description.
|
dfESPproject::replaceMASmoduleFromFile( const char *name, language_t lang, const char *filePath, const char *description)
Parameter
|
Description
|
---|---|
name
|
The name of the module.
It is used to refer to the module in any subsequent method calls.
|
language
|
Specify either DS2 or
Python.
|
filePath
|
The path to the file
containing the DS2 or Python source code with which to replace the
existing code, including filename and extension. See DS2 Programming for Event Stream Processing with SAS Micro Analytic Service and Python Programming for SAS Event Stream Processing with SAS Micro Analytic Service for Micro Analytic Service in SAS
Event Stream Processing.
|
description
|
An optional string that
contains a description of the module’s purpose. Pass in NULL
to omit a description.
|
dfESPproject::deleteMASmodule(const char *name,)
dfESPpcontext::registerMethod_MAS( dfESPwindow *w, const char *moduleName, const char *methodName)
Parameter
|
Description
|
---|---|
w
|
The source window whose
events are to be processed by the specified module method.
|
moduleName
|
The name of the module
containing the specified method.
|
methodName
|
The name of the method
to use to process the specified source window’s events.
|