=str #15735 Prototype of FlowGraph

Add documentation
This commit is contained in:
Patrik Nordwall 2014-09-04 14:31:22 +02:00
parent 82eb2aa910
commit 400e49e88d
7 changed files with 802 additions and 37 deletions

View file

@ -121,6 +121,10 @@ trait SimpleSource[+In] extends Source[In] {
* operations.
*/
def isActive: Boolean = false
// these are unique keys, case class equality would break them
final override def equals(other: Any): Boolean = super.equals(other)
final override def hashCode: Int = super.hashCode
}
/**