Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/totetmatt/javagephistreamer
Client for Gephi Streaming
https://github.com/totetmatt/javagephistreamer
Last synced: 7 days ago
JSON representation
Client for Gephi Streaming
- Host: GitHub
- URL: https://github.com/totetmatt/javagephistreamer
- Owner: totetmatt
- Created: 2015-05-16T07:46:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-16T08:11:24.000Z (over 9 years ago)
- Last Synced: 2023-03-23T02:47:41.655Z (almost 2 years ago)
- Language: Java
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GephiStreamer
```java
NodeEntity node01 = new NodeEntity("test-node-01");
NodeEntity node02 = new NodeEntity("test-node-02");
EdgeEntity edge = new EdgeEntity(node01, node02);
StreamAction action01 = node01.createAction(Action.ADD_NODE);
StreamAction action02 = node02.createAction(Action.ADD_NODE);
StreamAction action03 = edge.createAction(Action.ADD_EDGE);
SimpleGephiStreamer streamer = new SimpleGephiStreamer();
streamer.sendAction(action01);
streamer.sendAction(action02);
streamer.sendAction(action03);
```