Package io.vertx.ext.consul
Class SessionList
- java.lang.Object
-
- io.vertx.ext.consul.SessionList
-
public class SessionList extends Object
Holds result of sessions query- Author:
- Ruslan Sennov
-
-
Constructor Summary
Constructors Constructor Description SessionList()
Default constructorSessionList(JsonObject json)
Constructor from JSONSessionList(SessionList 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<Session>
getList()
Get list of sessionsint
hashCode()
SessionList
setIndex(long index)
Set Consul index, a unique identifier representing the current state of the requested list of sessionsSessionList
setList(List<Session> list)
Set list of sessionsJsonObject
toJson()
Convert to JSON
-
-
-
Constructor Detail
-
SessionList
public SessionList()
Default constructor
-
SessionList
public SessionList(SessionList other)
Copy constructor- Parameters:
other
- the one to copy
-
SessionList
public SessionList(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 SessionList setIndex(long index)
Set Consul index, a unique identifier representing the current state of the requested list of sessions- Parameters:
index
- the consul index- Returns:
- reference to this, for fluency
-
setList
public SessionList setList(List<Session> list)
Set list of sessions- Parameters:
list
- the list of sessions- Returns:
- reference to this, for fluency
-
-