Uses of Interface
org.graphstream.stream.Sink

Packages that use Sink
org.graphstream.graph   
org.graphstream.graph.implementations   
org.graphstream.stream   
org.graphstream.stream.file   
org.graphstream.stream.netstream   
org.graphstream.stream.rmi   
org.graphstream.stream.thread   
org.graphstream.ui.graphicGraph   
org.graphstream.ui.layout   
org.graphstream.ui.layout.springbox   
org.graphstream.ui.layout.springbox.implementations   
org.graphstream.ui.swingViewer   
org.graphstream.util   
 

Uses of Sink in org.graphstream.graph
 

Subinterfaces of Sink in org.graphstream.graph
 interface Graph
          An Interface that advises general purpose methods for handling graphs.
 

Uses of Sink in org.graphstream.graph.implementations
 

Classes in org.graphstream.graph.implementations that implement Sink
 class AbstractGraph
           This class provides a basic implementation of Graph interface, to minimize the effort required to implement this interface.
 class AdjacencyListGraph
           A lightweight graph class intended to allow the construction of big graphs (millions of elements).
 class DefaultGraph
          Default implementation of graph.
 class MultiGraph
          A graph implementation that supports multiple edges between two nodes.
 class SingleGraph
          An implementation of graph that supports only one edge between two nodes.
 

Methods in org.graphstream.graph.implementations with parameters of type Sink
 void AbstractGraph.addSink(Sink sink)
           
 void AbstractGraph.removeSink(Sink sink)
           
 

Uses of Sink in org.graphstream.stream
 

Subinterfaces of Sink in org.graphstream.stream
 interface Pipe
          Sink and source of graph events.
 interface ProxyPipe
          Proxy pipe.
 

Classes in org.graphstream.stream that implement Sink
 class AnnotatedSink
          A sink easily allowing a bind between attribute modifications and method calls.
 class AttributePipe
          Allows to filter the attribute event stream.
 class PipeAdapter
          Adapter for the filter interface.
 class PipeBase
          A base pipe that merely let all events pass.
 class SinkAdapter
          Adapter for the Sink interface.
 class Timeline
           
 

Methods in org.graphstream.stream with parameters of type Sink
 void SourceBase.addSink(Sink sink)
           
 void Source.addSink(Sink sink)
          Add a sink for all graph events (attributes and graph elements) coming from this source.
 void SourceAdapter.addSink(Sink sink)
           
 void PipeAdapter.addSink(Sink listener)
           
 void SourceBase.removeSink(Sink sink)
           
 void Source.removeSink(Sink sink)
          Remove a sink.
 void SourceAdapter.removeSink(Sink sink)
           
 void PipeAdapter.removeSink(Sink listener)
           
 

Uses of Sink in org.graphstream.stream.file
 

Subinterfaces of Sink in org.graphstream.stream.file
 interface FileSink
          Output a graph or graph events to a file.
 

Classes in org.graphstream.stream.file that implement Sink
 class FileSinkBase
          Base implementation for graph output to files.
 class FileSinkDGS
          File output for the DGS (Dynamic Graph Stream) file format.
 class FileSinkDOT
          Graph writer for the GraphViz DOT format.
 class FileSinkDynamicGML
          Transform the input events into a GML graph.
 class FileSinkGEXF
           
 class FileSinkGML
          Transform the input events into a GML graph.
 class FileSinkGraphML
           
 class FileSinkImages
          Output graph in image files.
 class FileSinkSVG
          Transforms a graph into a SVG description.
 class FileSinkSVG2
           
 class FileSinkSWF
          This class intends to output a dynamic graph into a Flash animation.
 class FileSinkTikZ
          An export of a graph to PGF/TikZ format.
 

Uses of Sink in org.graphstream.stream.netstream
 

Classes in org.graphstream.stream.netstream that implement Sink
 class NetStreamSender
           This class implements a sender according to specifications the NetStream protocol.
 

Uses of Sink in org.graphstream.stream.rmi
 

Classes in org.graphstream.stream.rmi that implement Sink
 class RMISink
           
 

Methods in org.graphstream.stream.rmi with parameters of type Sink
 void RMISource.addSink(Sink listener)
           
 void RMISource.removeSink(Sink listener)
           
 

Uses of Sink in org.graphstream.stream.thread
 

Classes in org.graphstream.stream.thread that implement Sink
 class ThreadProxyPipe
          Filter that allows to pass graph events between two threads without explicit synchronization.
 class ThreadProxyPipeOld
          Deprecated. This is the old version of ThreadProxyPipe.
 

Constructors in org.graphstream.stream.thread with parameters of type Sink
ThreadProxyPipe(Source input, Sink initialListener, boolean replay)
          Deprecated. Use the default constructor and then call the ThreadProxyPipe.init(Source) method.
ThreadProxyPipeOld(Graph inputGraph, Sink firstListener, boolean replayGraph)
          Deprecated. Like #ThreadProxyPipe(Graph,boolean) but allows to pass an initial listener, therefore specifying the input and output at once.
ThreadProxyPipeOld(Graph inputGraph, Sink firstListener, boolean replayGraph, org.miv.mbox.MBox sharedMBox)
          Deprecated. Like #ThreadProxyPipe(Graph,Sink,boolean), but allows to share the message box with another message processor.
 

Uses of Sink in org.graphstream.ui.graphicGraph
 

Classes in org.graphstream.ui.graphicGraph that implement Sink
 class GraphicGraph
          Graph representation used in display classes.
 

Methods in org.graphstream.ui.graphicGraph with parameters of type Sink
 void GraphicGraph.addSink(Sink listener)
           
 void GraphicGraph.removeSink(Sink listener)
           
 

Uses of Sink in org.graphstream.ui.layout
 

Subinterfaces of Sink in org.graphstream.ui.layout
 interface Layout
          Layout algorithm interface.
 

Uses of Sink in org.graphstream.ui.layout.springbox
 

Classes in org.graphstream.ui.layout.springbox that implement Sink
 class BarnesHutLayout
          Base implementation of a Barnes-Hut space decomposition and particle interaction algorithm to be used for force-based layout algorithms.
 

Uses of Sink in org.graphstream.ui.layout.springbox.implementations
 

Classes in org.graphstream.ui.layout.springbox.implementations that implement Sink
 class LinLog
           
 class SpringBox
          The GraphStream Spring-Box layout.
 

Uses of Sink in org.graphstream.ui.swingViewer
 

Classes in org.graphstream.ui.swingViewer that implement Sink
 class ViewerPipe
          Shell around a proxy pipe coming from the viewer allowing to put viewer listeners on a viewer that runs in a distinct thread.
 

Uses of Sink in org.graphstream.util
 

Classes in org.graphstream.util that implement Sink
 class StepCounter
          Count the step of a stream.
 class VerboseSink
          A sink that can be used to display event in a PrintStream like System.out.
 



Copyright © 2013. All Rights Reserved.