com.ibm.cics.server
Class WrapperHelper

java.lang.Object
  extended bycom.ibm.cics.server.WrapperHelper

public class WrapperHelper
extends java.lang.Object

Usage:
This Class is not part of the JCICS API

Version:
07/06/12
Author:
Paul Cooper

Constructor Summary
WrapperHelper()
           
 
Method Summary
static void driveReInit()
          Call the drive_ibmJVMReInitialize() methods on any objects that require it.
static void driveTidyUp()
          Call the drive_ibmJVMTidyUp() methods on any objects that require it.
static void registerInitializer(ResetOnInitialization item)
          This method is called by the first insatnce of any class loaded that requires reinitialization at each JVM use.
static void registerTerminator(TidyUpOnTermination item)
          This method is called by the first insatnce of any class loaded that requires reinitialization at each JVM use.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WrapperHelper

public WrapperHelper()
Method Detail

registerTerminator

public static void registerTerminator(TidyUpOnTermination item)
This method is called by the first insatnce of any class loaded that requires reinitialization at each JVM use. This mechanism is used instead of the shiraz reset methods - only it works in reusable mode as well as resetable mode

Parameters:
item - class whose reinit method requires calling

registerInitializer

public static void registerInitializer(ResetOnInitialization item)
This method is called by the first insatnce of any class loaded that requires reinitialization at each JVM use. This mechanism is used instead of the shiraz reset methods - only it works in reusable mode as well as resetable mode. PLEASE do not add multiple instances of the same class.

Parameters:
item - class whose reinit method requires calling

driveReInit

public static void driveReInit()
Call the drive_ibmJVMReInitialize() methods on any objects that require it.


driveTidyUp

public static void driveTidyUp()
Call the drive_ibmJVMTidyUp() methods on any objects that require it.