Class IngressState
public sealed class IngressState : IMessage<IngressState>, IEquatable<IngressState>, IDeepCloneable<IngressState>, IBufferMessage, IMessage
- Inheritance
-
IngressState
- Implements
-
IMessage<IngressState>IDeepCloneable<IngressState>IBufferMessageIMessage
- Inherited Members
Constructors
IngressState()
public IngressState()
IngressState(IngressState)
public IngressState(IngressState other)
Parameters
otherIngressState
Fields
AudioFieldNumber
Field number for the "audio" field.
public const int AudioFieldNumber = 4
Field Value
EndedAtFieldNumber
Field number for the "ended_at" field.
public const int EndedAtFieldNumber = 8
Field Value
ErrorFieldNumber
Field number for the "error" field.
public const int ErrorFieldNumber = 2
Field Value
ResourceIdFieldNumber
Field number for the "resource_id" field.
public const int ResourceIdFieldNumber = 9
Field Value
RoomIdFieldNumber
Field number for the "room_id" field.
public const int RoomIdFieldNumber = 5
Field Value
StartedAtFieldNumber
Field number for the "started_at" field.
public const int StartedAtFieldNumber = 7
Field Value
StatusFieldNumber
Field number for the "status" field.
public const int StatusFieldNumber = 1
Field Value
TracksFieldNumber
Field number for the "tracks" field.
public const int TracksFieldNumber = 6
Field Value
UpdatedAtFieldNumber
Field number for the "updated_at" field.
public const int UpdatedAtFieldNumber = 10
Field Value
VideoFieldNumber
Field number for the "video" field.
public const int VideoFieldNumber = 3
Field Value
Properties
Audio
public InputAudioState Audio { get; set; }
Property Value
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
EndedAt
public long EndedAt { get; set; }
Property Value
Error
Error/non compliance description if any
public string Error { get; set; }
Property Value
Parser
public static MessageParser<IngressState> Parser { get; }
Property Value
- MessageParser<IngressState>
ResourceId
public string ResourceId { get; set; }
Property Value
RoomId
ID of the current/previous room published to
public string RoomId { get; set; }
Property Value
StartedAt
public long StartedAt { get; set; }
Property Value
Status
public IngressState.Types.Status Status { get; set; }
Property Value
Tracks
public RepeatedField<TrackInfo> Tracks { get; }
Property Value
- RepeatedField<TrackInfo>
UpdatedAt
public long UpdatedAt { get; set; }
Property Value
Video
public InputVideoState Video { get; set; }
Property Value
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
public int CalculateSize()
Returns
- int
The number of bytes required to write this message to a coded output stream.
Clone()
Creates a deep clone of this object.
public IngressState Clone()
Returns
- IngressState
A deep clone of this object.
Equals(IngressState)
public bool Equals(IngressState other)
Parameters
otherIngressState
Returns
Equals(object)
public override bool Equals(object other)
Parameters
otherobject
Returns
GetHashCode()
public override int GetHashCode()
Returns
MergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
public void MergeFrom(CodedInputStream input)
Parameters
inputCodedInputStream
Remarks
See the user guide for precise merge semantics.
MergeFrom(IngressState)
Merges the given message into this one.
public void MergeFrom(IngressState other)
Parameters
otherIngressState
Remarks
See the user guide for precise merge semantics.
ToString()
public override string ToString()
Returns
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
public void WriteTo(CodedOutputStream output)
Parameters
outputCodedOutputStreamCoded output stream to write the data to. Must not be null.