Modifier and Type | Interface and Description |
---|---|
interface |
Graph
An Interface that advises general purpose methods for handling graphs.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractGraph
This class provides a basic implementation of
Graph interface, to minimize the effort
required to implement this interface. |
(package private) class |
AbstractGraph.GraphListeners |
class |
AdjacencyListGraph
A lightweight graph class intended to allow the construction of big graphs
(millions of elements).
|
class |
DefaultGraph
Default implementation of graph.
|
(package private) static class |
Graphs.SynchronizedGraph |
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.
|
Modifier and Type | Method and Description |
---|---|
void |
Graphs.SynchronizedGraph.addSink(Sink sink) |
void |
AbstractGraph.addSink(Sink sink) |
void |
Graphs.SynchronizedGraph.removeSink(Sink sink) |
void |
AbstractGraph.removeSink(Sink sink) |
Modifier and Type | Interface and Description |
---|---|
interface |
Pipe
Sink and source of graph events.
|
interface |
ProxyPipe
Proxy pipe.
|
Modifier and Type | Class and Description |
---|---|
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 |
Modifier and Type | Method and Description |
---|---|
void |
SourceBase.addSink(Sink sink) |
void |
SourceAdapter.addSink(Sink sink) |
void |
Source.addSink(Sink sink)
Add a sink for all graph events (attributes and graph elements) coming
from this source.
|
void |
PipeAdapter.addSink(Sink listener) |
void |
SourceBase.removeSink(Sink sink) |
void |
SourceAdapter.removeSink(Sink sink) |
void |
Source.removeSink(Sink sink)
Remove a sink.
|
void |
PipeAdapter.removeSink(Sink listener) |
Modifier and Type | Interface and Description |
---|---|
interface |
FileSink
Output a graph or graph events to a file.
|
Modifier and Type | Class and Description |
---|---|
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 |
FileSinkSWF
This class intends to output a dynamic graph into a Flash animation.
|
Modifier and Type | Class and Description |
---|---|
class |
NetStreamSender
This class implements a sender according to specifications the NetStream
protocol.
|
Modifier and Type | Class and Description |
---|---|
class |
RMISink |
Modifier and Type | Method and Description |
---|---|
void |
RMISource.addSink(Sink listener) |
void |
RMISource.removeSink(Sink listener) |
Modifier and Type | Class and Description |
---|---|
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 . |
Constructor and Description |
---|
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. |
Modifier and Type | Class and Description |
---|---|
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.
|