=str #16687 rename internal GraphFlow to GraphBackedFlow

Same rename made for GraphSource and GraphSink for consistency
This commit is contained in:
Konrad Malawski 2015-01-28 11:49:07 +01:00
parent 580ba8c484
commit fde7119360
6 changed files with 59 additions and 59 deletions

View file

@ -115,7 +115,7 @@ object Flow {
/**
* Create a [[Flow]] from a seemingly disconnected [[Source]] and [[Sink]] pair.
*/
def apply[I, O](sink: Sink[I], source: Source[O]): Flow[I, O] = GraphFlow(sink, source)
def apply[I, O](sink: Sink[I], source: Source[O]): Flow[I, O] = GraphBackedFlow(sink, source)
}
/**