Skip to content

Commit

Permalink
add type alias
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgfraser committed Nov 16, 2019
1 parent a48c88c commit e3da420
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/shared/src/main/scala/zio/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ package object zio extends ZEnvDefinition with EitherCompat {
type UManaged[+A] = ZManaged[Any, Nothing, A]
type TaskManaged[+A] = ZManaged[Any, Throwable, A]

@deprecated("use Schedule", "1.0.0")
type ZSchedule[-R, -A, +B] = Schedule[R, A, B]

type Queue[A] = ZQueue[Any, Nothing, Any, Nothing, A, A]

object <*> {
Expand Down

0 comments on commit e3da420

Please sign in to comment.