Class SessionStatus
The SessionStatus class holds information on the current status of a tranmission session.
Inheritance
java.lang.Object
SessionStatus
Inherited Members
java.lang.Object.clone()
java.lang.Object.equals(java.lang.Object)
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.hashCode()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.toString()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)
Namespace:
Assembly: .dll
Syntax
public class SessionStatus
Constructors
SessionStatus(UUID sessionId, String game, boolean isActive, LocalTime lastRequest, LocalTime sessionOpened, LocalTime sessionClosed, int receivedStatistics, int receivedImages, int totalRequests, String ip, String statusType)
Declaration
public SessionStatus(UUID sessionId, String game, boolean isActive, LocalTime lastRequest, LocalTime sessionOpened, LocalTime sessionClosed, int receivedStatistics, int receivedImages, int totalRequests, String ip, String statusType)
Parameters
| Type |
Name |
Description |
| java.util.UUID |
sessionId |
|
| java.lang.String |
game |
|
| boolean |
isActive |
|
| java.time.LocalTime |
lastRequest |
|
| java.time.LocalTime |
sessionOpened |
|
| java.time.LocalTime |
sessionClosed |
|
| int |
receivedStatistics |
|
| int |
receivedImages |
|
| int |
totalRequests |
|
| java.lang.String |
ip |
|
| java.lang.String |
statusType |
|
Methods
getGame()
Declaration
Returns
| Type |
Description |
| java.lang.String |
|
getIp()
Declaration
Returns
| Type |
Description |
| java.lang.String |
|
getIsActive()
Declaration
public boolean getIsActive()
Returns
getLastRequest()
Declaration
public LocalTime getLastRequest()
Returns
| Type |
Description |
| java.time.LocalTime |
|
getReceivedImages()
Declaration
public int getReceivedImages()
Returns
getReceivedStatistics()
Declaration
public int getReceivedStatistics()
Returns
getSessionClosed()
Declaration
public LocalTime getSessionClosed()
Returns
| Type |
Description |
| java.time.LocalTime |
|
getSessionId()
Declaration
public UUID getSessionId()
Returns
| Type |
Description |
| java.util.UUID |
|
getSessionOpened()
Declaration
public LocalTime getSessionOpened()
Returns
| Type |
Description |
| java.time.LocalTime |
|
getStatusType()
Declaration
public String getStatusType()
Returns
| Type |
Description |
| java.lang.String |
|
getTotalRequests()
Declaration
public int getTotalRequests()
Returns
isActive()
Declaration
public boolean isActive()
Returns
isActiveProperty()
Declaration
public BooleanProperty isActiveProperty()
Returns
| Type |
Description |
| javafx.beans.property.BooleanProperty |
|
lastRequestProperty()
Declaration
public ObjectProperty<LocalTime> lastRequestProperty()
Returns
| Type |
Description |
| javafx.beans.property.ObjectProperty<java.time.LocalTime> |
|
receivedImagesProperty()
Declaration
public IntegerProperty receivedImagesProperty()
Returns
| Type |
Description |
| javafx.beans.property.IntegerProperty |
|
receivedStatisticsProperty()
Declaration
public IntegerProperty receivedStatisticsProperty()
Returns
| Type |
Description |
| javafx.beans.property.IntegerProperty |
|
sessionClosedProperty()
Declaration
public ObjectProperty<LocalTime> sessionClosedProperty()
Returns
| Type |
Description |
| javafx.beans.property.ObjectProperty<java.time.LocalTime> |
|
setIsActive(boolean isActive)
Declaration
public void setIsActive(boolean isActive)
Parameters
| Type |
Name |
Description |
| boolean |
isActive |
|
setLastRequest(LocalTime lastRequest)
Declaration
public void setLastRequest(LocalTime lastRequest)
Parameters
| Type |
Name |
Description |
| java.time.LocalTime |
lastRequest |
|
setReceivedImages(int amount)
Declaration
public void setReceivedImages(int amount)
Parameters
| Type |
Name |
Description |
| int |
amount |
|
setReceivedStatistics(int amount)
Declaration
public void setReceivedStatistics(int amount)
Parameters
| Type |
Name |
Description |
| int |
amount |
|
setSessionClosed(LocalTime sessionClosed)
Declaration
public void setSessionClosed(LocalTime sessionClosed)
Parameters
| Type |
Name |
Description |
| java.time.LocalTime |
sessionClosed |
|
setStatusType(String statusType)
Declaration
public void setStatusType(String statusType)
Parameters
| Type |
Name |
Description |
| java.lang.String |
statusType |
|
setTotalRequests(int amount)
Declaration
public void setTotalRequests(int amount)
Parameters
| Type |
Name |
Description |
| int |
amount |
|
totalRequestsProperty()
Declaration
public IntegerProperty totalRequestsProperty()
Returns
| Type |
Description |
| javafx.beans.property.IntegerProperty |
|