protected CommandMessage( RTMPMessageType type, long timestamp, long stream_id, byte[] body) : base(type, timestamp, stream_id, body) { }
public RTMPMessage( RTMPMessageType message_type, long timestamp, long stream_id, byte[] body) { MessageType = message_type; Timestamp = timestamp; StreamId = stream_id; Body = body; }
public RTMPMessage( RTMPMessageType message_type, long timestamp, long stream_id, byte[] body) { MessageType = message_type; Timestamp = timestamp; StreamId = stream_id; Body = body; }
protected DataMessage( RTMPMessageType type, long timestamp, long stream_id, byte[] body) : base(type, timestamp, stream_id, body) { }