com.ibm.di.api.remote
Interface ConfigInstance

All Superinterfaces:
Remote
All Known Implementing Classes:
ConfigInstanceImpl

public interface ConfigInstance
extends Remote

ConfigInstance MBean interface that defines public methods exposed through Server API remote session.


Method Summary
 void addLogListener(LogListener listener)
          Register listener for messages logged by this configuration instance.
 String getALLastLogFileName(String aALName)
          Returns the name of the log file created on the last run of a given AssemblyLine.
 String getALLog(String aALName, String aLogFileName)
          Given an AssemblyLine name, and a log file name, retrieves the log of this AssemblyLine, stored in the specified file.
 String[] getALLogFileNames(String aALName)
          Returns the names of all available log files for a given AssemblyLine.
 String getALLogLastChunk(String aALName, String aLogFileName, int aKilobytes)
          Retrieves the last chunk from a specified AssemblyLine's log file.
 AssemblyLine getAssemblyLineByUniqueCode(int alId)
          Searches the list of AssemblyLines for the specified unique code (one returned by the getAssemblyLineUniqueCodes() method)
 SchemaConfig getAssemblyLineInputParameters(String aAssemblyLineName)
          Returns the AssemblyLine’s input parameters.
 String[] getAssemblyLineNames()
          Returns the AssemblyLines’ names.
 SchemaConfig getAssemblyLineOutputParameters(String aAssemblyLineName)
          Returns the AssemblyLine’s output parameters.
 AssemblyLine[] getAssemblyLines()
          Returns currently started AssemblyLines of the configuration instance.
 String[] getAssemblyLinesNames()
          Deprecated. Use getAssemblyLineNames().
 int[] getAssemblyLineUniqueCodes()
          Returns a list of integers uniquely identify all the AssemblyLines within the ConfigInstance.
 String getConfigId()
          Returns the configuration ID generated by the server.
 String getConfigPath()
          Retrieves absolut configuration path.
 MetamergeConfig getConfiguration()
          Returns configuration instance representing this configuration.
 String getConfigurationFile()
          Retrieves a reference to the Configuration file used to load this instance from.
 PoolDefConfig getConnectorPoolConfig(String aConnectorPoolName)
          Returns the Connector Pool configuration object.
 int getConnectorPoolFreeNum(String aConnectorPoolName)
          Returns the number of free Connectors in the specified Connector Pool.
 String[] getConnectorPoolNames()
          Returns the names of all Connector Pools in the Config Instance.
 int getConnectorPoolSize(String aConnectorPoolName)
          Returns the size of the specified Connector Pool.
 ExternalPropertiesConfig getExternalProperties()
          Deprecated. use getTDIProperties() instead
 ExternalPropertiesConfig getExternalProperties(String aKey)
          Deprecated. use getTDIProperties() instead
 String[] getExternalPropertiesKeys()
          Deprecated. use getTDIProperties() instead
 String getGlobalUniqueID()
          Returns the Config Instance GUID.
 Date getInstanceBootTime()
          Returns the Instance boot time.
 Map<String,Object> getSchedulerInfo(String name)
          Returns information about the named Scheduler.
 List<Map<String,Object>> getSchedulersInfo()
          Returns information about all Schedulers in this RS.
 TDIProperties getTDIProperties()
          Returns the TDIProperties object associated with the current configuration.
 int purgeConnectorPool(String aConnectorPoolName)
          Unused Connectors will be released so that the Pool is shrunk to its minimum size.
 void reload()
          Reloads the Config Instance with its current configuration.
 void removeLogListener(LogListener listener)
           Unregister listener for messages logged by this configuration instance.
 void saveConfiguration()
          Deprecated. Not supported.
 void saveConfiguration(boolean aEncrypt)
          Deprecated. Not supported.
 void saveExternalProperties()
          Deprecated. Not supported.
 void setConfiguration(MetamergeConfig aConfiguration)
          Sets given configuration to this configuration.
 void setExternalProperties(ExternalPropertiesConfig aExPropConfig)
          Deprecated. Not supported.
 void setExternalProperties(String aKey, ExternalPropertiesConfig aExPropConfig)
          Deprecated. Not supported.
 AssemblyLine startAssemblyLine(String aAssemblyLineName)
          Starts the specified AssemblyLine asynchronously.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, boolean aSync)
          Starts the specified AssemblyLine.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, Entry aInputData)
          Starts the specified AssemblyLine with the given input data asynchronously.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, Entry aInputData, AssemblyLineListener aListener, boolean aGetLogs)
          Starts asynchronously the specified AssemblyLine with the given input data and results listener.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, Entry aInputData, AssemblyLineListener aListener, boolean aGetLogs, boolean aSync)
          Starts the specified AssemblyLine with the given input data and results listener.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, Entry aInputData, AssemblyLineListener aListener, boolean aGetLogs, boolean aSync, boolean aGetEntryOnEachCycle)
          Starts the specified AssemblyLine with the given input data and results listener.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, Entry aInputData, boolean aSync)
          Starts the specified AssemblyLine with the given input data.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, TaskCallBlock aTcb)
          Starts asynchronously the specified AssemblyLine with the given TaskCallBlock.
 AssemblyLine startAssemblyLine(String aAssemblyLineName, TaskCallBlock aTcb, boolean aSync)
          Starts the specified AssemblyLine with the given TaskCallBlock.
 AssemblyLineHandler startAssemblyLineManual(String aAssemblyLineName, Entry aInputData)
          Starts the specified AssemblyLine with the given input data in manual mode.
 Sequence startSequence(String name)
          Starts the specified Sequence.
 Sequence startSequence(String name, TaskCallBlock tcb, AssemblyLineListener listener)
          Starts the specified Sequence with the given TaskCallBlock and a Listener
 Sequence startSequence(String name, TaskCallBlock tcb, boolean sync)
          Starts the specified Sequence specifying a TaskCallBlock, synchronous or asynchronous.
 void stop()
          Stops the Config Instance.
 void stop(boolean sync)
          Stops the Config Instance, and all AssemblyLines started by it, and waits a while for the stopping.
 

Method Detail

getConfigId

String getConfigId()
                   throws DIException,
                          RemoteException
Returns the configuration ID generated by the server.

Example

  var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
  var remoteSession = sessionFactory.createSession();
  for( ci in remoteSession.getConfigInstances()){
    task.logmsg("Name: " + ci.getConfigId());
  }
 

Returns:
String object representing the configuration ID.
Throws:
DIException - if an error occurs while getting the configuration ID.
RemoteException - if a communication-related exception occurs.

getConfiguration

MetamergeConfig getConfiguration()
                                 throws DIException,
                                        RemoteException
Returns configuration instance representing this configuration.

Returns:
MetamergeConfig object representing this configuration.
Throws:
DIException - if an error occurs while getting the configuration.
RemoteException - if a communication-related exception occurs.

setConfiguration

void setConfiguration(MetamergeConfig aConfiguration)
                      throws DIException,
                             RemoteException
Sets given configuration to this configuration.

Parameters:
aConfiguration - The new configuration.
Throws:
DIException - if an error occurs while setting the configuration.
RemoteException - if a communication-related exception occurs.

saveConfiguration

@Deprecated
void saveConfiguration()
                       throws DIException,
                              RemoteException
Deprecated. Not supported.

Throws:
DIException
RemoteException

saveConfiguration

@Deprecated
void saveConfiguration(boolean aEncrypt)
                       throws DIException,
                              RemoteException
Deprecated. Not supported.

Throws:
DIException
RemoteException

getExternalProperties

@Deprecated
ExternalPropertiesConfig getExternalProperties()
                                               throws DIException,
                                                      RemoteException
Deprecated. use getTDIProperties() instead

Returns the external properties of the configuration.

Returns:
ExternalPropertiesConfig object representing the configuration’s external properties.
Throws:
DIException - if an error occurs while getting the external properties.
RemoteException - if a communication-related exception occurs.

getExternalProperties

@Deprecated
ExternalPropertiesConfig getExternalProperties(String aKey)
                                               throws DIException,
                                                      RemoteException
Deprecated. use getTDIProperties() instead

Returns the ExternalPropertiesConfig object for the named external properties object.

Parameters:
aKey - The external property object name.
Returns:
ExternalPropertiesConfig object representing the configuration’s external properties specified by the external property object name.
Throws:
DIException - if an error occurs while getting the external properties.
RemoteException - if a communication-related exception occurs.

getExternalPropertiesKeys

@Deprecated
String[] getExternalPropertiesKeys()
                                   throws DIException,
                                          RemoteException
Deprecated. use getTDIProperties() instead

Returns the external properties object names.

Returns:
String array each value representing one external property object name.
Throws:
DIException - if an error occurs while getting the external properties names.
RemoteException - if a communication-related exception occurs.

setExternalProperties

@Deprecated
void setExternalProperties(ExternalPropertiesConfig aExPropConfig)
                           throws DIException,
                                  RemoteException
Deprecated. Not supported.

Throws:
DIException
RemoteException

setExternalProperties

@Deprecated
void setExternalProperties(String aKey,
                                      ExternalPropertiesConfig aExPropConfig)
                           throws DIException,
                                  RemoteException
Deprecated. Not supported.

Throws:
DIException
RemoteException

saveExternalProperties

@Deprecated
void saveExternalProperties()
                            throws DIException,
                                   RemoteException
Deprecated. Not supported.

Throws:
DIException
RemoteException

getAssemblyLinesNames

@Deprecated
String[] getAssemblyLinesNames()
                               throws DIException,
                                      RemoteException
Deprecated. Use getAssemblyLineNames().

Throws:
DIException
RemoteException

getAssemblyLineNames

String[] getAssemblyLineNames()
                              throws DIException,
                                     RemoteException
Returns the AssemblyLines’ names.

Example

  var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
  var remoteSession = sessionFactory.createSession();
  var configInstances = remoteSession.getConfigInstances();
  if (configInstances != null){
    for (ci in configInstances){
      for(al in ci.getAssemblyLineNames()){
        task.logmsg("Al name: " + al);
      }
    }
  } else {
    task.logmsg("no available config instances");
  }
 

Returns:
String array each value representing AssemblyLine name.
Throws:
DIException - if an error occurs while getting the AssemblyLines’ names.
RemoteException - if a communication-related exception occurs.

getAssemblyLineUniqueCodes

int[] getAssemblyLineUniqueCodes()
                                 throws DIException,
                                        RemoteException
Returns a list of integers uniquely identify all the AssemblyLines within the ConfigInstance.

Example:

        var ci = session.getConfigInstance("C__Documents and Settings_username_My Documents_TDI_rs.xml");
 
        for(al in ci.getAssemblyLineUniqueCodes()){
        task.logmsg("Al id: " + al);
        }
 
  //Sample output:Al name: csv2xml
                Al id: 2312
 

Returns:
integer list each value representing AssemblyLine id.
Throws:
DIException - if an error occurs while getting the AssemblyLines’ IDs.
RemoteException - if a communication-related exception occurs.

getAssemblyLineByUniqueCode

AssemblyLine getAssemblyLineByUniqueCode(int alId)
                                         throws DIException,
                                                RemoteException
Searches the list of AssemblyLines for the specified unique code (one returned by the getAssemblyLineUniqueCodes() method)

Parameters:
alId - the AssemblyLine ID uniquely identifying the AssemblyLine instance in the scope of the ConfigInstance.
Returns:
the AssemblyLine found or null
Throws:
DIException - if an error occurs while getting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

getAssemblyLineInputParameters

SchemaConfig getAssemblyLineInputParameters(String aAssemblyLineName)
                                            throws DIException,
                                                   RemoteException
Returns the AssemblyLine’s input parameters.

Parameters:
aAssemblyLineName - the name of the AssemblyLine.
Returns:
SchemaConfig representing the schema input of the AssemblyLine.
Throws:
DIException - if an error occurs while getting the AssemblyLine's input parameters.
RemoteException - if a communication-related exception occurs.

getAssemblyLineOutputParameters

SchemaConfig getAssemblyLineOutputParameters(String aAssemblyLineName)
                                             throws DIException,
                                                    RemoteException
Returns the AssemblyLine’s output parameters.

Parameters:
aAssemblyLineName - the name of the AssemblyLine.
Returns:
SchemaConfig representing the schema output of the AssemblyLine.
Throws:
DIException - if an error occurs while getting the AssemblyLine's output parameters.
RemoteException - if a communication-related exception occurs.

getAssemblyLines

AssemblyLine[] getAssemblyLines()
                                throws DIException,
                                       RemoteException
Returns currently started AssemblyLines of the configuration instance.

Example

  var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
  var remoteSession = sessionFactory.createSession();
  var configInstances = remoteSession.getConfigInstances();
  if (configInstances != null){
    for (ci in configInstances){
      for(al in ci.getAssemblyLines()){
        task.logmsg("Al name: " + al.getName());
      }
    }
  } else {
    task.logmsg("no available config instances");
  }
 

Returns:
AssemblyLine array object each value represents currently started AssemblyLine.
Throws:
DIException - if an error occurs while getting the AssemblyLines.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine asynchronously.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var ci = remoteSession.getConfigInstance("exampleCI");
 
        var al = ci.startAssemblyLine("exampleAL");
 

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               boolean aSync)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var ci = remoteSession.getConfigInstance("exampleCI");
 
        var al = ci.startAssemblyLine("exampleAL", false);
 

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aSync - when true the AssemblyLine is started synchronously, when false the AssemblyLine is started asynchronously.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               Entry aInputData)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine with the given input data asynchronously.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var mAssemblyLine = remoteSession.getAssemblyLines()[0];
 
 if (mAssemblyLine != null) {
        var ci = mAssemblyLine.getConfigInstance();
        var al = ci.startAssemblyLine("exampleAL", work);
 } else {
        main.logmsg("No Remote Assembly Lines Running");
 }
 

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aInputData - Initial Work Entry to run the AssemblyLine with.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               Entry aInputData,
                               boolean aSync)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine with the given input data.

When the AssemblyLine is started synchronously it waits the current thread to die and starts after that.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var mAssemblyLine = remoteSession.getAssemblyLines()[0];
 
 if (mAssemblyLine != null) {
        var ci = mAssemblyLine.getConfigInstance();
        var al = ci.startAssemblyLine("exampleAL", work, false);
 } else {
        main.logmsg("No Remote Assembly Lines Running");
 }
 

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aInputData - Initial Work Entry to run the AssemblyLine with.
aSync - when true the AssemblyLine is started synchronously, when false the AssemblyLine is started asynchronously.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               Entry aInputData,
                               AssemblyLineListener aListener,
                               boolean aGetLogs)
                               throws DIException,
                                      RemoteException
Starts asynchronously the specified AssemblyLine with the given input data and results listener.

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aInputData - Initial Work Entry to run the AssemblyLine with.
aListener - A listener for Entries produced by the AssemblyLine.
aGetLogs - when true the AssemblyLineListener is delivered log messages, when false log messages are not delivered.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               Entry aInputData,
                               AssemblyLineListener aListener,
                               boolean aGetLogs,
                               boolean aSync)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine with the given input data and results listener.

When the AssemblyLine is started synchronously it waits the current thread to die and starts after that.

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aInputData - Initial Work Entry to run the AssemblyLine with.
aListener - A listener for Entries produced by the AssemblyLine.
aGetLogs - when true the AssemblyLineListener delivers log messages, when false log messages are not delivered.
aSync - when true the AssemblyLine is started synchronously, when false the AssemblyLine is started asynchronously.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               Entry aInputData,
                               AssemblyLineListener aListener,
                               boolean aGetLogs,
                               boolean aSync,
                               boolean aGetEntryOnEachCycle)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine with the given input data and results listener.

When the AssemblyLine is started synchronously it waits the current thread to die and starts after that.

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aInputData - Initial Work Entry to run the AssemblyLine with.
aListener - A listener for Entries produced by the AssemblyLine.
aGetLogs - when true the AssemblyLineListener delivers log messages, when false log messages are not delivered.
aSync - when true the AssemblyLine is started synchronously, when false the AssemblyLine is started asynchronously.
aGetEntryOnEachCycle - when true the AssemblyLineListener delivers the current entry on each AssemblyLine cycle, when false the entries are not delivered.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLineManual

AssemblyLineHandler startAssemblyLineManual(String aAssemblyLineName,
                                            Entry aInputData)
                                            throws DIException,
                                                   RemoteException
Starts the specified AssemblyLine with the given input data in manual mode.

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aInputData - Initial Work Entry to run the AssemblyLine with.
Returns:
the AssemblyLineHandler object for AssemblyLine manipulation in manual mode.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               TaskCallBlock aTcb)
                               throws DIException,
                                      RemoteException
Starts asynchronously the specified AssemblyLine with the given TaskCallBlock.

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aTcb - The TaskCallBlock object to start the AL with.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startAssemblyLine

AssemblyLine startAssemblyLine(String aAssemblyLineName,
                               TaskCallBlock aTcb,
                               boolean aSync)
                               throws DIException,
                                      RemoteException
Starts the specified AssemblyLine with the given TaskCallBlock.

Parameters:
aAssemblyLineName - The name of the AssemblyLine.
aTcb - The TaskCallBlock object to start the AL with.
aSync - when true the AssemblyLine is started synchronously, when false the AssemblyLine is started asynchronously.
Returns:
the AssemblyLine object.
Throws:
DIException - if an error occurs when starting the AssemblyLine.
RemoteException - if a communication-related exception occurs.

startSequence

Sequence startSequence(String name)
                       throws DIException,
                              RemoteException
Starts the specified Sequence.

Example:

 var ci = session.getConfigInstance("C__Documents and Settings_username_My Documents_TDI_rs.xml");
 
 var seq = ci.startSequence("csv2xml");//Sequence is started
 

Parameters:
name - The name of the Sequence.
Returns:
the Sequence object.
Throws:
DIException - if an error occurs when starting the Sequence.
RemoteException - if a communication-related exception occurs.
Since:
7.2

startSequence

Sequence startSequence(String name,
                       TaskCallBlock tcb,
                       boolean sync)
                       throws DIException,
                              RemoteException
Starts the specified Sequence specifying a TaskCallBlock, synchronous or asynchronous.

Example:

 var ci = session.getConfigInstance("C__Documents and Settings_username_My Documents_TDI_rs.xml");
 
 var seq = ci.startSequence("csv2xml", null, true);//Sequence is started in new thread, and has now run to completion
 //do something with seq
 

Parameters:
name - The name of the Sequence.
tcb - The TaskCallBlock object to start the Sequence with. If null, ignored.
sync - when true the Sequence is started synchronously, when false the Sequence is started asynchronously.
Returns:
the Sequence object.
Throws:
DIException - if an error occurs when starting the Sequence.
RemoteException - if a communication-related exception occurs.
Since:
7.2

startSequence

Sequence startSequence(String name,
                       TaskCallBlock tcb,
                       AssemblyLineListener listener)
                       throws DIException,
                              RemoteException
Starts the specified Sequence with the given TaskCallBlock and a Listener

Parameters:
name - The name of the Sequence.
tcb - The TaskCallBlock object to start the Sequence with.
listener - A listener to know when the Sequence has stopped.
Returns:
the Sequence object.
Throws:
DIException - if an error occurs when starting the Sequence.
RemoteException - if a communication-related exception occurs.
Since:
7.2

reload

void reload()
            throws DIException,
                   RemoteException
Reloads the Config Instance with its current configuration.

Throws:
DIException - if an error occurs while reloading the server.
RemoteException - if a communication-related exception occurs.

stop

void stop()
          throws DIException,
                 RemoteException
Stops the Config Instance.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var configInstances = remoteSession.getConfigInstances();
 if (configInstances != null){
   for (ci in configInstances){
     ci.stop();
   }
 } else {
   task.logmsg("no available config instances");
 }
 

Throws:
DIException - if an error occurs while stopping.
RemoteException - if a communication-related exception occurs.

stop

void stop(boolean sync)
          throws DIException,
                 RemoteException
Stops the Config Instance, and all AssemblyLines started by it, and waits a while for the stopping.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var configInstances = remoteSession.getConfigInstances();
 if (configInstances != null){
   for (ci in configInstances){
     ci.stop(false);
   }
 } else {
   task.logmsg("no available config instances");
 }
 

Parameters:
sync - If true, creates new Threads on the server to do the waiting.
Throws:
DIException - if an error occurs while stopping.
RemoteException - if a communication-related exception occurs.
Since:
7.1

getALLogFileNames

String[] getALLogFileNames(String aALName)
                           throws DIException,
                                  RemoteException
Returns the names of all available log files for a given AssemblyLine.

Parameters:
aALName - the name of the AssemblyLine.
Returns:
a String array, each of its elements specifying the name of a log file.
Throws:
DIException - if an error occurs while obtaining AssemblyLine's log file names.
RemoteException - if a communication-related exception occurs.

getALLastLogFileName

String getALLastLogFileName(String aALName)
                            throws DIException,
                                   RemoteException
Returns the name of the log file created on the last run of a given AssemblyLine.

Parameters:
aALName - the name of the AssemblyLine.
Returns:
the name of the log file created on the last AssemblyLine's run.
Throws:
DIException - if an error occurs while obtaining the log file name.
RemoteException - if a communication-related exception occurs.

getALLog

String getALLog(String aALName,
                String aLogFileName)
                throws DIException,
                       RemoteException
Given an AssemblyLine name, and a log file name, retrieves the log of this AssemblyLine, stored in the specified file.

Parameters:
aALName - the name of the AssemblyLine.
aLogFileName - the name of the log file; no file path should be specified - just the file name.
Returns:
the specified log of the AssemblyLine.
Throws:
DIException - if an error occurs while obtaining AssemblyLine's log.
RemoteException - if a communication-related exception occurs.

getALLogLastChunk

String getALLogLastChunk(String aALName,
                         String aLogFileName,
                         int aKilobytes)
                         throws DIException,
                                RemoteException
Retrieves the last chunk from a specified AssemblyLine's log file.

Parameters:
aALName - the name of the AssemblyLine.
aLogFileName - the name of the log file; no file path should be specified - just the file name.
aKilobytes - specifies in kilobytes the size of the log's last chunk that will be read.
Returns:
the last chunk of the specified AssemblyLine's log.
Throws:
DIException - if an error occurs while obtaining AssemblyLine's log.
RemoteException - if a communication-related exception occurs.

getInstanceBootTime

Date getInstanceBootTime()
                         throws DIException,
                                RemoteException
Returns the Instance boot time.

Returns:
a java.util.Date specifying the date and time the instance was started.
Throws:
DIException - if an error occurs while retrieving instance's boot time.
RemoteException - if a communication-related exception occurs.

getGlobalUniqueID

String getGlobalUniqueID()
                         throws DIException,
                                RemoteException
Returns the Config Instance GUID. The GUID is a string value that is unique for each component ever created by a particular TDI Server.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var configInstances = remoteSession.getConfigInstances();
 if (configInstances != null){
   for (ci in configInstances){
     task.logmsg("CI path: " + ci.getGlobalUniqueID());
   }
 } else {
   task.logmsg("no available config instances");
 }
 

Returns:
The Config Instance GUID value.
Throws:
DIException - if an error occurs while retrieving Config Instance GUID value.
RemoteException - if a communication-related exception occurs.

getConnectorPoolNames

String[] getConnectorPoolNames()
                               throws DIException,
                                      RemoteException
Returns the names of all Connector Pools in the Config Instance.

Returns:
String array containing the Connector Pool names.
Throws:
DIException - if an error occurs while retrieving Connector Pool names.
RemoteException - if a communication-related exception occurs.

getConnectorPoolSize

int getConnectorPoolSize(String aConnectorPoolName)
                         throws DIException,
                                RemoteException
Returns the size of the specified Connector Pool.

Parameters:
aConnectorPoolName - the name of the Connector Pool.
Returns:
The current size of the specified Connector Pool.
Throws:
DIException - if an error occurs while retrieving the size of the specified Connector Pool.
RemoteException - if a communication-related exception occurs.

getConnectorPoolFreeNum

int getConnectorPoolFreeNum(String aConnectorPoolName)
                            throws DIException,
                                   RemoteException
Returns the number of free Connectors in the specified Connector Pool.

Parameters:
aConnectorPoolName - the name of the Connector Pool.
Returns:
The number of free Connectors in the specified Connector Pool.
Throws:
DIException - if an error occurs while retrieving the number of free Connectors in the specified Connector Pool.
RemoteException - if a communication-related exception occurs.

getConnectorPoolConfig

PoolDefConfig getConnectorPoolConfig(String aConnectorPoolName)
                                     throws DIException,
                                            RemoteException
Returns the Connector Pool configuration object.

Parameters:
aConnectorPoolName - the name of the Connector Pool.
Returns:
The configuration object for the specified Connector Pool.
Throws:
DIException - if an error occurs while retrieving Connector Pool configuration object.
RemoteException - if a communication-related exception occurs.

purgeConnectorPool

int purgeConnectorPool(String aConnectorPoolName)
                       throws DIException,
                              RemoteException
Unused Connectors will be released so that the Pool is shrunk to its minimum size.

Parameters:
aConnectorPoolName - the name of the Connector Pool.
Returns:
The size of the Connector Pool after shrinking.
Throws:
DIException - if an error occurs while shrinking the Connector Pool.
RemoteException - if a communication-related exception occurs.

getTDIProperties

TDIProperties getTDIProperties()
                               throws Exception,
                                      RemoteException
Returns the TDIProperties object associated with the current configuration. The TDIProperties can then be used to obtain list of property stores, get/set/remove property values,etc.

Returns:
TDIProperties object associated with the current configuration.
Throws:
Exception - if an error occurs while retrieving TDIProperties object.
RemoteException - if a communication-related exception occurs.

getConfigPath

String getConfigPath()
                     throws RemoteException
Retrieves absolut configuration path.

Example

 var sessionFactory = java.rmi.Naming.lookup("rmi://127.0.0.1:1099/SessionFactory");
 var remoteSession = sessionFactory.createSession();
 var configInstances = remoteSession.getConfigInstances();
 if (configInstances != null){
   for (ci in configInstances){
     task.logmsg("CI path: " + ci.getConfigPath());
   }
 } else {
   task.logmsg("no available config instances");
 }
 

Returns:
The absolute path of the configuration file.
Throws:
RemoteException - if a communication-related exception occurs.

getConfigurationFile

String getConfigurationFile()
                            throws DIException,
                                   RemoteException
Retrieves a reference to the Configuration file used to load this instance from. This string is in the form of what Session.listAllConfigurations() would return. It could be either a solution name or a path relative to the base config folder.

Returns:
the configuration file reference or null if this is a temporary instance from an in-memory configuration.
Throws:
DIException - if an error occurs while retrieving configuration file reference
RemoteException - if a communication-related exception occurs.
Since:
7.2

addLogListener

void addLogListener(LogListener listener)
                    throws DIException,
                           RemoteException
Register listener for messages logged by this configuration instance. You must be admin to execute this method.

Parameters:
listener - Listener for logged messages.
Throws:
DIException - If an error occurs during registration, e.g. the listener is null.
RemoteException - If a communication-related exception occurs.
Since:
7.0
See Also:
removeLogListener(LogListener)

removeLogListener

void removeLogListener(LogListener listener)
                       throws DIException,
                              RemoteException

Unregister listener for messages logged by this configuration instance. You must be admin to execute this method.

Listeners are associated with the API object, not with the AssemblyLine in the Server, so you can remove only listeners added with the addLogListener(LogListener) method on the same object.

Do not invoke this method from within the listener while the listener is being notified because a deadlock may occur.

Parameters:
listener - Registered listener.
Throws:
DIException - If an error occurs while unregistering the listener, e.g. the listener is null or is not registered.
RemoteException - If a communication-related exception occurs.
Since:
7.0
See Also:
addLogListener(LogListener)

getSchedulerInfo

Map<String,Object> getSchedulerInfo(String name)
                                    throws RemoteException
Returns information about the named Scheduler. If the Scheduler is not found, returns null.

Parameters:
name - - Name of Scheduler
Throws:
RemoteException
Since:
7.1.1
See Also:
Scheduler.getInfo();

getSchedulersInfo

List<Map<String,Object>> getSchedulersInfo()
                                           throws RemoteException
Returns information about all Schedulers in this RS. If no Schedulers are found, returns an empty List.

Throws:
RemoteException
Since:
7.1.1
See Also:
Scheduler.getInfo();