final class Connectable[+T <: Data] extends AnyRef
A data for whom members if left dangling or unassigned with not trigger an error A waived member will still be connected to if present in both producer and consumer
- Alphabetic
- By Inheritance
- Connectable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
- val base: T
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
notSpecial: Boolean
True if no members are waived or squeezed
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
squeeze(members: (T) ⇒ Data*): Connectable[T]
Select members of base to squeeze
Select members of base to squeeze
- members
functions given the base return a member to squeeze
-
def
squeeze: Connectable[T]
Adds base to squeezes
-
def
squeezeAll: Connectable[T]
Squeeze all members of base
-
def
squeezeEach[S <: Data](pf: PartialFunction[Data, Seq[Data]]): Connectable[T]
Programmatically select members of base to squeeze
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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( ... )
-
def
waive(members: (T) ⇒ Data*): Connectable[T]
Select members of base to waive
Select members of base to waive
- members
functions given the base return a member to waive
-
def
waiveAll: Connectable[T]
Waive all members of base
-
def
waiveAllAs[S <: Data](implicit ev: <:<[T, S]): Connectable[S]
Waive all members of base and static cast to a new type
-
def
waiveAs[S <: Data](members: (T) ⇒ Data*)(implicit ev: <:<[T, S]): Connectable[S]
Select members of base to waive and static cast to a new type
Select members of base to waive and static cast to a new type
- members
functions given the base return a member to waive
-
def
waiveEach[S <: Data](pf: PartialFunction[Data, Seq[Data]])(implicit ev: <:<[T, S]): Connectable[S]
Programmatically select members of base to waive and static cast to a new type