Class: Google::Apis::GamesV1::RoomP2PStatus

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/games_v1/classes.rb,
generated/google/apis/games_v1/representations.rb,
generated/google/apis/games_v1/representations.rb

Overview

This is a JSON template for an update on the status of a peer in a room.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RoomP2PStatus

Returns a new instance of RoomP2PStatus.



3371
3372
3373
# File 'generated/google/apis/games_v1/classes.rb', line 3371

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#connection_setup_latency_millisFixnum

The amount of time in milliseconds it took to establish connections with this peer. Corresponds to the JSON property connectionSetupLatencyMillis

Returns:

  • (Fixnum)


3325
3326
3327
# File 'generated/google/apis/games_v1/classes.rb', line 3325

def connection_setup_latency_millis
  @connection_setup_latency_millis
end

#errorString

The error code in event of a failure. Possible values are:

  • "P2P_FAILED" - The client failed to establish a P2P connection with the peer.

  • "PRESENCE_FAILED" - The client failed to register to receive P2P connections.

  • "RELAY_SERVER_FAILED" - The client received an error when trying to use the relay server to establish a P2P connection with the peer. Corresponds to the JSON property error

Returns:

  • (String)


3337
3338
3339
# File 'generated/google/apis/games_v1/classes.rb', line 3337

def error
  @error
end

#error_reasonString

More detailed diagnostic message returned in event of a failure. Corresponds to the JSON property error_reason

Returns:

  • (String)


3342
3343
3344
# File 'generated/google/apis/games_v1/classes.rb', line 3342

def error_reason
  @error_reason
end

#kindString

Uniquely identifies the type of this resource. Value is always the fixed string games#roomP2PStatus. Corresponds to the JSON property kind

Returns:

  • (String)


3348
3349
3350
# File 'generated/google/apis/games_v1/classes.rb', line 3348

def kind
  @kind
end

#participant_idString

The ID of the participant. Corresponds to the JSON property participantId

Returns:

  • (String)


3353
3354
3355
# File 'generated/google/apis/games_v1/classes.rb', line 3353

def participant_id
  @participant_id
end

#statusString

The status of the peer in the room. Possible values are:

  • "CONNECTION_ESTABLISHED" - The client established a P2P connection with the peer.
  • "CONNECTION_FAILED" - The client failed to establish directed presence with the peer. Corresponds to the JSON property status

Returns:

  • (String)


3363
3364
3365
# File 'generated/google/apis/games_v1/classes.rb', line 3363

def status
  @status
end

#unreliable_roundtrip_latency_millisFixnum

The amount of time in milliseconds it took to send packets back and forth on the unreliable channel with this peer. Corresponds to the JSON property unreliableRoundtripLatencyMillis

Returns:

  • (Fixnum)


3369
3370
3371
# File 'generated/google/apis/games_v1/classes.rb', line 3369

def unreliable_roundtrip_latency_millis
  @unreliable_roundtrip_latency_millis
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3376
3377
3378
3379
3380
3381
3382
3383
3384
# File 'generated/google/apis/games_v1/classes.rb', line 3376

def update!(**args)
  @connection_setup_latency_millis = args[:connection_setup_latency_millis] if args.key?(:connection_setup_latency_millis)
  @error = args[:error] if args.key?(:error)
  @error_reason = args[:error_reason] if args.key?(:error_reason)
  @kind = args[:kind] if args.key?(:kind)
  @participant_id = args[:participant_id] if args.key?(:participant_id)
  @status = args[:status] if args.key?(:status)
  @unreliable_roundtrip_latency_millis = args[:unreliable_roundtrip_latency_millis] if args.key?(:unreliable_roundtrip_latency_millis)
end