case class KorolevServiceConfig[F[_], S, M](stateLoader: StateLoader[F, S], stateStorage: StateStorage[F, S] = null, http: PartialFunction[HttpRequest[F], F[HttpResponse[F]]] = PartialFunction.empty, router: Router[F, S] = Router.empty[F, S], rootPath: String = "/", render: (S) ⇒ Node[Binding[F, S, M]] = (_: S) => levsha.dsl.html.body(), head: (S) ⇒ Seq[Node[Binding[F, S, M]]] = (_: S) => Seq.empty, document: (S) ⇒ Node[Binding[F, S, M]] = null, connectionLostWidget: Node[Binding[F, S, M]] = ..., maxFormDataEntrySize: Int = 1024 * 8, extensions: List[Extension[F, S, M]] = Nil, idGenerator: IdGenerator[F] = IdGenerator.default[F](), heartbeatInterval: FiniteDuration = 5.seconds, reporter: Reporter = Reporter.PrintReporter)(implicit evidence$1: Effect[F], executionContext: ExecutionContext) extends Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- KorolevServiceConfig
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new KorolevServiceConfig(stateLoader: StateLoader[F, S], stateStorage: StateStorage[F, S] = null, http: PartialFunction[HttpRequest[F], F[HttpResponse[F]]] = PartialFunction.empty, router: Router[F, S] = Router.empty[F, S], rootPath: String = "/", render: (S) ⇒ Node[Binding[F, S, M]] = (_: S) => levsha.dsl.html.body(), head: (S) ⇒ Seq[Node[Binding[F, S, M]]] = (_: S) => Seq.empty, document: (S) ⇒ Node[Binding[F, S, M]] = null, connectionLostWidget: Node[Binding[F, S, M]] = ..., maxFormDataEntrySize: Int = 1024 * 8, extensions: List[Extension[F, S, M]] = Nil, idGenerator: IdGenerator[F] = IdGenerator.default[F](), heartbeatInterval: FiniteDuration = 5.seconds, reporter: Reporter = Reporter.PrintReporter)(implicit arg0: Effect[F], executionContext: ExecutionContext)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- val connectionLostWidget: Node[Binding[F, S, M]]
- val document: (S) ⇒ Node[Binding[F, S, M]]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- implicit val executionContext: ExecutionContext
- val extensions: List[Extension[F, S, M]]
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val heartbeatInterval: FiniteDuration
- val http: PartialFunction[HttpRequest[F], F[HttpResponse[F]]]
- val idGenerator: IdGenerator[F]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val maxFormDataEntrySize: Int
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val reporter: Reporter
- val rootPath: String
- val router: Router[F, S]
- val stateLoader: StateLoader[F, S]
- val stateStorage: StateStorage[F, S]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated
-
val
head: (S) ⇒ Seq[Node[Binding[F, S, M]]]
- Annotations
- @deprecated
- Deprecated
(Since version 0.16.0) Add head() tag to
document. Do not useheadanddocumenttogether.
-
val
render: (S) ⇒ Node[Binding[F, S, M]]
- Annotations
- @deprecated
- Deprecated
(Since version 0.16.0) Use
documentinstead ofrender. Do not userenderanddocumenttogether.