Package de.xima.fc.stage
Interface IResourceOpenFunction<T,R>
-
- Type Parameters:
T
- Type of the parameters for opening the resource.R
- Type of the resource to open.
public interface IResourceOpenFunction<T,R>
A function that opens a resource and may throw an exception in doing so.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
open(T value)
Opens the resource which will be closed at a later time.
-