public class VoiceConnection
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
SecureToken |
authToken
The authentication token for this connection.
|
ClientConnection |
con
The networking connection to the client with the given oid.
|
VoiceGroup |
group
The VoiceGroup instance to which this player belongs.
|
GroupMember |
groupMember
The GroupMember of the player with which this connection is
associated.
|
OID |
groupOid
The oid of the group to which this player belongs.
|
boolean |
listenToYourself
True if the speaker is allowed to listen to himself.
|
byte |
micVoiceNumber
The device number of the microphone that this connection will
use when it acts as a speaker.
|
OID |
playerOid
The oid of the player with which this connection is associated.
|
java.io.BufferedOutputStream |
recordSpeexStream
The output stream being used to write speex frames to disk.
|
short |
seqNum
The most recent sequence number received in a message from this voice connection.
|
Constructor and Description |
---|
VoiceConnection(ClientConnection con)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
A descriptive string for the VoiceConnection object.
|
public ClientConnection con
public OID playerOid
public GroupMember groupMember
public OID groupOid
public VoiceGroup group
public byte micVoiceNumber
public SecureToken authToken
public short seqNum
public boolean listenToYourself
public java.io.BufferedOutputStream recordSpeexStream
public VoiceConnection(ClientConnection con)
con
- The ClientCconnection object representing the
network connection to the player associated with this
VoiceConnection.