Interface SessionCallbackWithoutResult<F>
- Type Parameters:
F
- the target system file type.
- All Superinterfaces:
SessionCallback<F,
Object>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface SessionCallbackWithoutResult<F>
extends SessionCallback<F,Object>
Simple convenience implementation of
SessionCallback
for cases where
no result is returned.- Since:
- 3.0
- Author:
- Gary Russell, Artem Bilan
-
Method Summary
Modifier and TypeMethodDescriptiondefault Object
doInSession
(Session<F> session) Called within the context of a session.void
doInSessionWithoutResult
(Session<F> session) Called within the context of a session.
-
Method Details
-
doInSession
Description copied from interface:SessionCallback
Called within the context of a session. Perform some operation(s) on the session. The caller will take care of closing the session after this method exits.- Specified by:
doInSession
in interfaceSessionCallback<F,
Object> - Parameters:
session
- The session.- Returns:
- The result of type T.
- Throws:
IOException
- Any IOException.
-
doInSessionWithoutResult
Called within the context of a session. Perform some operation(s) on the session. The caller will take care of closing the session after this method exits.- Parameters:
session
- The session.- Throws:
IOException
- Any IOException.
-