Packages

class HoTTWebSession extends SimpleSession[HoTTPostWeb, (Int, Int)]

Linear Supertypes
SimpleSession[HoTTPostWeb, (Int, Int)], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HoTTWebSession
  2. SimpleSession
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HoTTWebSession(initialWeb: HoTTPostWeb = new HoTTPostWeb(), bots: Vector[HoTTBot] = HoTTWebSession.initBots, completionResponse: Option[(HoTTPostWeb) => Future[PostData[_, HoTTPostWeb, ID]]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toany2stringadd[HoTTWebSession] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (HoTTWebSession, B)
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toArrowAssoc[HoTTWebSession] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. val completedResponses: ArrayBuffer[((Int, Int), PostResponse[HoTTPostWeb, (Int, Int)])]
    Definition Classes
    SimpleSession
  9. val completionResponse: Option[(HoTTPostWeb) => Future[PostData[_, HoTTPostWeb, (Int, Int)]]]
    Definition Classes
    SimpleSession
  10. def ensuring(cond: (HoTTWebSession) => Boolean, msg: => Any): HoTTWebSession
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toEnsuring[HoTTWebSession] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (HoTTWebSession) => Boolean): HoTTWebSession
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toEnsuring[HoTTWebSession] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: => Any): HoTTWebSession
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toEnsuring[HoTTWebSession] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): HoTTWebSession
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toEnsuring[HoTTWebSession] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toStringFormat[HoTTWebSession] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def post[P](content: P, preds: Set[(Int, Int)], withResponse: Boolean = true)(implicit pw: Postable[P, HoTTPostWeb, (Int, Int)], dg: DataGetter[P, HoTTPostWeb, (Int, Int)]): Future[PostData[_, HoTTPostWeb, (Int, Int)]]

    recursively posting and running (as side-effects) offspring tasks, this posts the head but bots will be called with a different method that does not post the head, to avoid duplication

    recursively posting and running (as side-effects) offspring tasks, this posts the head but bots will be called with a different method that does not post the head, to avoid duplication

    content

    the post content

    preds

    the predecessor posts

    pw

    postability

    returns

    the data of the post as a future

    Definition Classes
    SimpleSession
  24. def postLP(lp: LocalProver, pred: Set[ID] = Set()): Future[PostData[_, HoTTPostWeb, ID]]
  25. def postLocalProverFuture(lp: LocalProver, pred: Set[ID] = Set()): Future[PostData[_, HoTTPostWeb, ID]]
  26. def query[Q](predicate: (Q) => Boolean = (_: Q) => true)(implicit q: Queryable[Q, HoTTPostWeb]): Future[Q]

    a query from the web

    a query from the web

    predicate

    condition to be satisfied

    q

    queribility

    returns

    response to query as a future

    Definition Classes
    SimpleSession
  27. def queryAt[Q](id: (Int, Int), predicate: (Q) => Boolean = (_: Q) => true)(implicit q: LocalQueryable[Q, HoTTPostWeb, (Int, Int)]): Future[Vector[Q]]

    a query from the web at a position

    a query from the web at a position

    id

    the postion

    predicate

    condition to be satisfied

    q

    queribility

    returns

    response to query as a future

    Definition Classes
    SimpleSession
  28. def remainingResponses: Vector[((Int, Int), PostResponse[HoTTPostWeb, (Int, Int)])]
    Definition Classes
    SimpleSession
  29. def respond[P](content: P, postID: (Int, Int))(implicit pw: Postable[P, HoTTPostWeb, (Int, Int)]): Unit

    the recursive step for posting, the given content is not posted, only the responses are.

    the recursive step for posting, the given content is not posted, only the responses are.

    content

    the head content, not post

    postID

    the ID of the head, to be used as predecessor for the other posts

    pw

    postability

    Definition Classes
    SimpleSession
  30. def respondSeq(pds: Vector[PostData[_, HoTTPostWeb, (Int, Int)]]): Unit
    Definition Classes
    SimpleSession
  31. var responses: Vector[PostResponse[HoTTPostWeb, (Int, Int)]]
    Definition Classes
    SimpleSession
  32. def running: Boolean
    Definition Classes
    HoTTWebSessionSimpleSession
  33. val startedResponses: ArrayBuffer[((Int, Int), PostResponse[HoTTPostWeb, (Int, Int)])]
    Definition Classes
    SimpleSession
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. val web: HoTTPostWeb
    Definition Classes
    SimpleSession

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def [B](y: B): (HoTTWebSession, B)
    Implicit
    This member is added by an implicit conversion from HoTTWebSession toArrowAssoc[HoTTWebSession] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from SimpleSession[HoTTPostWeb, (Int, Int)]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromHoTTWebSession to any2stringadd[HoTTWebSession]

Inherited by implicit conversion StringFormat fromHoTTWebSession to StringFormat[HoTTWebSession]

Inherited by implicit conversion Ensuring fromHoTTWebSession to Ensuring[HoTTWebSession]

Inherited by implicit conversion ArrowAssoc fromHoTTWebSession to ArrowAssoc[HoTTWebSession]

Ungrouped