io.quartz
package io.quartz
Members list
Packages
package io.quartz.http2
package io.quartz.netio
package io.quartz.util
package io.quartz.websocket
Type members
Classlikes
case class BadProtocol(ch: IOChannel, msg: String) extends Exception
Attributes
- Supertypes
-
trait Producttrait Equalsclass Exceptionclass Throwabletrait Serializableclass Objecttrait Matchableclass AnyShow all
case class HeaderSizeLimitExceeded(msg: String) extends Exception
Attributes
- Supertypes
-
trait Producttrait Equalsclass Exceptionclass Throwabletrait Serializableclass Objecttrait Matchableclass AnyShow all
object MyLogger
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
MyLogger.type
object QuartzH2Client
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
QuartzH2Client.type
object QuartzH2Server
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
QuartzH2Server.type
class QuartzH2Server(HOST: String, PORT: Int, h2IdleTimeOutMs: Int, sslCtx: Option[SSLContext], incomingWinSize: Int, onConnect: Long => IO[Unit], onDisconnect: Long => IO[Unit])
Quartz HTTP/2 server.
Quartz HTTP/2 server.
Value parameters
- HOST
-
the host address of the server
- PORT
-
the port number to bind to
- h2IdleTimeOutMs
-
the maximum idle time in milliseconds before a connection is closed
- incomingWinSize
-
the initial window size for incoming flow control
- onConnect
-
callback function that is called when a connection is established, provides connectionId : Long as an argument
- onDisconnect
-
callback function that is called when a connection is terminated, provides connectionId : Long as an argument
- sslCtx
-
the SSL context to use for secure connections, can be null for non-secure connections
Attributes
- Companion
- object
- Supertypes
-
class Objecttrait Matchableclass Any
In this article