Class PostEventDO


public class PostEventDO extends SMIntervalAndTimeDO
Representation of CICS POST EVENT
Event are posted using
postEvent.set(double pointerValue). ... 
and then waited for using
waitEvent.setEcaddr(double pointerValue) 
Where pointerValue is a unique/common identifier used as an anchor for Post/Wait operations
  • Constructor Details

    • PostEventDO

      public PostEventDO()
  • Method Details

    • set

      public PostEventDO set(ISMNumeric pointerValue)
    • set

      public PostEventDO set(double pointerValue)
      set the pointer address - a unique integer representing the event which will be searched for using WaitEventDO
      Parameters:
      pointerValue -
      Returns:
    • retrievePointer

      public ISMNumeric retrievePointer()
    • setAfter

      public PostEventDO setAfter(boolean after)
    • setTime

      public PostEventDO setTime(ISMObject time)
    • setSeconds

      public PostEventDO setSeconds(ISMObject seconds)
    • setMinutes

      public PostEventDO setMinutes(ISMObject minutes)
    • setInterval

      public PostEventDO setInterval(ISMObject interval)
      The event will expire after the interval
      Parameters:
      interval - - a number representing hhmmss , e.g. 145033 to represent 2pm:50:33 ,
      or 33 to represent the interval of 00:00:33 (33 seconds)
      Returns:
    • setInterval

      public PostEventDO setInterval(int interval)
    • setHours

      public PostEventDO setHours(ISMObject hours)
    • setAt

      public PostEventDO setAt(boolean at)
    • setNohandle

      public PostEventDO setNohandle()
      to do ...
      Returns:
    • setResponse

      public PostEventDO setResponse(ISMObject responseField)