Examples of SourceBase


Examples of org.graphstream.stream.SourceBase

  }

  @Test
  public void testSentEvents() {
    LinkedList<Event> events = generateEventList(10000);
    SourceBase source = new TestSource();
    EventStack stack = new EventStack();

    source.addSink(stack);

    for (Event e : events)
      send(source, e);

    assertEquals(events.size(), stack.size());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.