T
- The type of object that this container holdspublic interface WritableContainer<T> extends Container
Modifier and Type | Method and Description |
---|---|
WritableContainer<T> |
append(T t)
Append the object to the end of the container.
|
WritableContainer<T> |
put(T t)
Overwrite the container contents with the supplied object.
|
WritableContainer<T> append(T t) throws CICSConditionException, java.io.IOException
EXEC CICS API commands:
EXEC CICS PUT CONTAINER
t
- object to appendCICSConditionException
- If there's a problem in CICS
RespCodes:
java.io.IOException
- If there's a problem serializing the objectWritableContainer<T> put(T t) throws CICSConditionException, java.io.IOException
EXEC CICS API commands:
EXEC CICS PUT CONTAINER
t
- object to putCICSConditionException
- If there's a problem in CICS
RespCodes:
java.io.IOException
- If there's a problem serializing the object