public class PlayerSession extends Object implements Serializable, Cloneable
Properties describing a player session.
Constructor and Description |
---|
PlayerSession() |
Modifier and Type | Method and Description |
---|---|
PlayerSession |
clone() |
boolean |
equals(Object obj) |
Date |
getCreationTime()
Time stamp indicating when this data object was created.
|
String |
getFleetId()
Unique identifier for a fleet.
|
String |
getGameSessionId()
Unique identifier for the game session that the player session is connected to.
|
String |
getIpAddress()
Game session IP address.
|
String |
getPlayerId()
Unique identifier for a player.
|
String |
getPlayerSessionId()
Unique identifier for a player session.
|
Integer |
getPort()
Port number for the game session.
|
String |
getStatus()
Current status of the player session.
|
Date |
getTerminationTime()
Time stamp indicating when this data object was terminated.
|
int |
hashCode() |
void |
setCreationTime(Date creationTime)
Time stamp indicating when this data object was created.
|
void |
setFleetId(String fleetId)
Unique identifier for a fleet.
|
void |
setGameSessionId(String gameSessionId)
Unique identifier for the game session that the player session is connected to.
|
void |
setIpAddress(String ipAddress)
Game session IP address.
|
void |
setPlayerId(String playerId)
Unique identifier for a player.
|
void |
setPlayerSessionId(String playerSessionId)
Unique identifier for a player session.
|
void |
setPort(Integer port)
Port number for the game session.
|
void |
setStatus(PlayerSessionStatus status)
Current status of the player session.
|
void |
setStatus(String status)
Current status of the player session.
|
void |
setTerminationTime(Date terminationTime)
Time stamp indicating when this data object was terminated.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
PlayerSession |
withCreationTime(Date creationTime)
Time stamp indicating when this data object was created.
|
PlayerSession |
withFleetId(String fleetId)
Unique identifier for a fleet.
|
PlayerSession |
withGameSessionId(String gameSessionId)
Unique identifier for the game session that the player session is connected to.
|
PlayerSession |
withIpAddress(String ipAddress)
Game session IP address.
|
PlayerSession |
withPlayerId(String playerId)
Unique identifier for a player.
|
PlayerSession |
withPlayerSessionId(String playerSessionId)
Unique identifier for a player session.
|
PlayerSession |
withPort(Integer port)
Port number for the game session.
|
PlayerSession |
withStatus(PlayerSessionStatus status)
Current status of the player session.
|
PlayerSession |
withStatus(String status)
Current status of the player session.
|
PlayerSession |
withTerminationTime(Date terminationTime)
Time stamp indicating when this data object was terminated.
|
public void setPlayerSessionId(String playerSessionId)
Unique identifier for a player session.
playerSessionId
- Unique identifier for a player session.public String getPlayerSessionId()
Unique identifier for a player session.
public PlayerSession withPlayerSessionId(String playerSessionId)
Unique identifier for a player session.
playerSessionId
- Unique identifier for a player session.public void setPlayerId(String playerId)
Unique identifier for a player.
playerId
- Unique identifier for a player.public String getPlayerId()
Unique identifier for a player.
public PlayerSession withPlayerId(String playerId)
Unique identifier for a player.
playerId
- Unique identifier for a player.public void setGameSessionId(String gameSessionId)
Unique identifier for the game session that the player session is connected to.
gameSessionId
- Unique identifier for the game session that the player session is connected to.public String getGameSessionId()
Unique identifier for the game session that the player session is connected to.
public PlayerSession withGameSessionId(String gameSessionId)
Unique identifier for the game session that the player session is connected to.
gameSessionId
- Unique identifier for the game session that the player session is connected to.public void setFleetId(String fleetId)
Unique identifier for a fleet.
fleetId
- Unique identifier for a fleet.public String getFleetId()
Unique identifier for a fleet.
public PlayerSession withFleetId(String fleetId)
Unique identifier for a fleet.
fleetId
- Unique identifier for a fleet.public void setCreationTime(Date creationTime)
Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").
creationTime
- Time stamp indicating when this data object was created. Format is a number expressed in Unix time as
milliseconds (ex: "1469498468.057").public Date getCreationTime()
Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").
public PlayerSession withCreationTime(Date creationTime)
Time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").
creationTime
- Time stamp indicating when this data object was created. Format is a number expressed in Unix time as
milliseconds (ex: "1469498468.057").public void setTerminationTime(Date terminationTime)
Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").
terminationTime
- Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as
milliseconds (ex: "1469498468.057").public Date getTerminationTime()
Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").
public PlayerSession withTerminationTime(Date terminationTime)
Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as milliseconds (ex: "1469498468.057").
terminationTime
- Time stamp indicating when this data object was terminated. Format is a number expressed in Unix time as
milliseconds (ex: "1469498468.057").public void setStatus(String status)
Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
status
- Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
PlayerSessionStatus
public String getStatus()
Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
PlayerSessionStatus
public PlayerSession withStatus(String status)
Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
status
- Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
PlayerSessionStatus
public void setStatus(PlayerSessionStatus status)
Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
status
- Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
PlayerSessionStatus
public PlayerSession withStatus(PlayerSessionStatus status)
Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
status
- Current status of the player session.
Possible player session statuses include the following:
RESERVED – The player session request has been received, but the player has not yet connected to the server process and/or been validated.
ACTIVE – The player has been validated by the server process and is currently connected.
COMPLETED – The player connection has been dropped.
TIMEDOUT – A player session request was received, but the player did not connect and/or was not validated within the time-out limit (60 seconds).
PlayerSessionStatus
public void setIpAddress(String ipAddress)
Game session IP address. All player sessions reference the game session location.
ipAddress
- Game session IP address. All player sessions reference the game session location.public String getIpAddress()
Game session IP address. All player sessions reference the game session location.
public PlayerSession withIpAddress(String ipAddress)
Game session IP address. All player sessions reference the game session location.
ipAddress
- Game session IP address. All player sessions reference the game session location.public void setPort(Integer port)
Port number for the game session. To connect to a GameLift server process, an app needs both the IP address and port number.
port
- Port number for the game session. To connect to a GameLift server process, an app needs both the IP
address and port number.public Integer getPort()
Port number for the game session. To connect to a GameLift server process, an app needs both the IP address and port number.
public PlayerSession withPort(Integer port)
Port number for the game session. To connect to a GameLift server process, an app needs both the IP address and port number.
port
- Port number for the game session. To connect to a GameLift server process, an app needs both the IP
address and port number.public String toString()
toString
in class Object
Object.toString()
public PlayerSession clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.