ChannelEvent

zio.http.ChannelEvent
See theChannelEvent companion trait
object ChannelEvent

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

final case class ExceptionCaught(cause: Throwable) extends ChannelEvent[Nothing]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ChannelEvent[Nothing]
class Object
trait Matchable
class Any
Show all
final case class Read[A](message: A) extends ChannelEvent[A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ChannelEvent[A]
class Object
trait Matchable
class Any
Show all
case object Registered extends ChannelEvent[Nothing]

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait ChannelEvent[Nothing]
class Object
trait Matchable
class Any
Show all
Self type
Registered.type
case object Unregistered extends ChannelEvent[Nothing]

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait ChannelEvent[Nothing]
class Object
trait Matchable
class Any
Show all
Self type
object UserEvent

Attributes

Companion
trait
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
UserEvent.type
sealed trait UserEvent

Custom user-events that are triggered within ZIO Http

Custom user-events that are triggered within ZIO Http

Attributes

Companion
object
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object HandshakeComplete.type
object HandshakeTimeout.type
case class UserEventTriggered(event: UserEvent) extends ChannelEvent[Nothing]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ChannelEvent[Nothing]
class Object
trait Matchable
class Any
Show all

Inherited types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def exceptionCaught(cause: Throwable): ChannelEvent[Nothing]
def read[A](msg: A): ChannelEvent[A]

Concrete fields

val registered: ChannelEvent[Nothing]
val unregistered: ChannelEvent[Nothing]