Package io.vertx.ext.consul
Class EventList
- java.lang.Object
-
- io.vertx.ext.consul.EventList
-
public class EventList extends Object
Holds result of events query- Author:
- Ruslan Sennov
-
-
Constructor Summary
Constructors Constructor Description EventList()
Default constructorEventList(JsonObject json)
Constructor from JSONEventList(EventList other)
Copy constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
long
getIndex()
Get Consul indexList<Event>
getList()
Get list of eventsint
hashCode()
EventList
setIndex(long index)
Set Consul index, a unique identifier representing the current state of the requested eventsEventList
setList(List<Event> list)
Set list of eventsJsonObject
toJson()
Convert to JSON
-
-
-
Constructor Detail
-
EventList
public EventList()
Default constructor
-
EventList
public EventList(EventList other)
Copy constructor- Parameters:
other
- the one to copy
-
EventList
public EventList(JsonObject json)
Constructor from JSON- Parameters:
json
- the JSON
-
-
Method Detail
-
toJson
public JsonObject toJson()
Convert to JSON- Returns:
- the JSON
-
getIndex
public long getIndex()
Get Consul index- Returns:
- the consul index
-
setIndex
public EventList setIndex(long index)
Set Consul index, a unique identifier representing the current state of the requested events- Parameters:
index
- the consul index- Returns:
- reference to this, for fluency
-
setList
public EventList setList(List<Event> list)
Set list of events- Parameters:
list
- the list of events- Returns:
- reference to this, for fluency
-
-