ZManagedCpsMonad
CpsMonad which encapsulate effects with automatic resource management.
Example of usage:
asyncRManaged[R] {
val input = FileChannel.open(inputPath)
val output = FileChannel.open(outputPath)
input.transformTo(0,Long.MaxValue,output)
}
Type members
Types
Inherited types
Value members
Concrete methods
Inherited methods
map over result of checked evaluation of A
map over result of checked evaluation of A
- Inherited from
- CpsTryMonad
synonym for flatMapTry needed for processing awaits inside mapTry.
synonym for flatMapTry needed for processing awaits inside mapTry.
- Inherited from
- CpsTryMonad
restore fa, ie if fa sucessful - return fa, otherwise apply fx to received error.
restore fa, ie if fa sucessful - return fa, otherwise apply fx to received error.
- Inherited from
- CpsTryMonad
try to evaluate async operation and wrap successful or failed result into F
.
try to evaluate async operation and wrap successful or failed result into F
.
- Inherited from
- CpsTryMonad
try to evaluate synchonious operation and wrap successful or failed result into F
.
try to evaluate synchonious operation and wrap successful or failed result into F
.
- Inherited from
- CpsTryMonad
ensure that action
will run before getting value from fa
ensure that action
will run before getting value from fa
- Inherited from
- CpsTryMonad
async shift of withAction
.
async shift of withAction
.
This method is substituted instead withAction, when we use await
inside withAction
argument.
- Inherited from
- CpsTryMonad