|
double | Add (in double x, in double y, out double z) |
|
double | AddAndCompare (in double x, in double y, in Adder anOtherAdder, out double z) |
|
void | SetLastResult (in double z) |
|
void | LastResult (out double z) |
|
void | ping () |
| Determines whether the server has already been loaded or not. More...
|
|
long | getStudyId () |
| Get study associated to component instance. More...
|
|
void | destroy () |
| Remove component instance from container. More...
|
|
Container | GetContainerRef () |
| Returns the container that the Component refers to. More...
|
|
void | setProperties (in FieldsDict dico) |
| Set component instance properties. More...
|
|
FieldsDict | getProperties () |
| Get component instance properties. More...
|
|
void | SetOption (in string optionName, in string value) |
| Set an option value. More...
|
|
string | GetOption (in string optionName) |
| Return an option value. More...
|
|
void | Names (in string aGraphName, in string aNodeName) |
| Set name of a node in a graph (for SUPERVISOR use) More...
|
|
boolean | Kill_impl () |
| Kill the component (if you can) More...
|
|
boolean | Stop_impl () |
| Stop the component (if you can) More...
|
|
boolean | Suspend_impl () |
| Suspend the component. More...
|
|
boolean | Resume_impl () |
| Resume the component. More...
|
|
long | CpuUsed_impl () |
| Get the cpu used. More...
|
|
TMPFile | DumpPython (in Object theStudy, in boolean isPublished, in boolean isMultiFile, out boolean isValidScript) |
| Get a python dump. More...
|
|
Engines::Salome_file | getInputFileToService (in string service_name, in string Salome_file_name) raises (SALOME::SALOME_Exception) |
| Returns a CORBA Ref of a input Salome_file managed by a service. More...
|
|
void | checkInputFilesToService (in string service_name) raises (SALOME::SALOME_Exception) |
| Check service input files (transfer them if needed) More...
|
|
Engines::Salome_file | setInputFileToService (in string service_name, in string Salome_file_name) raises (SALOME::SALOME_Exception) |
| This method adds a input Salome_file to a service of the component. More...
|
|
Engines::Salome_file | getOutputFileToService (in string service_name, in string Salome_file_name) raises (SALOME::SALOME_Exception) |
| Returns a CORBA Ref of a output Salome_file managed by a service. More...
|
|
void | checkOutputFilesToService (in string service_name) raises (SALOME::SALOME_Exception) |
| Check service output files (transfer them if needed) More...
|
|
Engines::Salome_file | setOutputFileToService (in string service_name, in string Salome_file_name) raises (SALOME::SALOME_Exception) |
| This method adds an output Salome_file to a service of the component. More...
|
|
boolean | hasObjectInfo () |
| Indicate if the component instance provides custom information about its objects. More...
|
|
string | getObjectInfo (in long studyId, in string entry) |
| Get custom information about the given object. More...
|
|
Check service input files (transfer them if needed)
This method is used before the activation of the service. It calls recvFiles() on all the input Salome_file files of the service.
Before each recvFiles(), it uses the callback method named configureSalome_file. This method allows the user to configure the files managed by the Salome_file.
By default, there is no files managed when a Salome_file is created, but the supervisor set some files managed by the Salome_file from the information contained into the schema file.
- Parameters
-
service_name | service's name. |
- Exceptions
-
contains | informations about files that are not in a good state. |
Check service output files (transfer them if needed)
This method is used at the end of the service. It calls recvFiles() on all the output Salome_file files of the service.
Before each recvFiles(), it uses the callback method named configureSalome_file. This method allows the user to configure the files managed by the Salome_file.
By default, there is no files managed when a Salome_file is created, but the supervisor set some files managed by the Salome_file from the information contained into the schema file.
- Parameters
-
service_name | service's name. |
- Exceptions
-
contains | informations about files that are not in a good state. |