@FunctionalInterface public interface SessionCallbackWithoutResult<F> extends SessionCallback<F,java.lang.Object>
SessionCallback for cases where
no result is returned.| Modifier and Type | Method and Description |
|---|---|
default java.lang.Object |
doInSession(Session<F> session)
Called within the context of a session.
|
void |
doInSessionWithoutResult(Session<F> session)
Called within the context of a session.
|
default java.lang.Object doInSession(Session<F> session) throws java.io.IOException
SessionCallbackdoInSession in interface SessionCallback<F,java.lang.Object>session - The session.java.io.IOException - Any IOException.void doInSessionWithoutResult(Session<F> session) throws java.io.IOException
session - The session.java.io.IOException - Any IOException.