use of com.yahoo.log.event.Collection in project vespa by vespa-engine.
the class EventTestCase method setUp.
public void setUp() {
countEvent = new Count("thecounter", 1234);
floatCountEvent = new Count("thecounter", 1234.23);
valueEvent = new Value("thevalue", 4566);
floatValueEvent = new Value("thevalue", 4566.23);
crashEvent = new Crash("appname", 1234, 11);
progressEvent1 = new Progress("thename", 1);
progressEvent2 = new Progress("thename", 1.0, 2.0);
reloadingEvent = new Reloading("thefilewereloading");
reloadedEvent = new Reloaded("thefilewereloaded");
startingEvent = new Starting("startingName");
startedEvent = new Started("startedName");
stoppingEvent = new Stopping("stoppingName", "because we want to");
stoppedEvent = new Stopped("stoppedName", 1234, 1);
collectionEvent = new Collection(123456, "thename");
unknownEvent = new Unknown();
}
Aggregations