Packagecom.adobe.mediacore.utils.scte35.commands
Classpublic final class PrivateCommand
InheritancePrivateCommand Inheritance Object
Implements SpliceCommand

The PrivateCommand provides a means to distribute user-defined commands using the SCTE 35 protocol.



Public Properties
 PropertyDefined By
  identifier : uint
[read-only] Unique identifier of this private command.
PrivateCommand
  privateBytes : ByteArray
[read-only] Byte array containing the payload of private command.
PrivateCommand
  type : uint
[read-only] Returns the type of the splice command.
PrivateCommand
Public Methods
 MethodDefined By
  
PrivateCommand(identifier:uint, privateBytes:ByteArray)
Default constructor.
PrivateCommand
Property Detail
identifierproperty
identifier:uint  [read-only]

Unique identifier of this private command. The identifier is a 32-bit field as defined in ISO/IEC 13818-1 [C3], section 2.6.8 and 2.6.9, for the registration_descriptor() format_identifier. Only identifier values registered and recognized by SMPTE Registration Authority, LLC should be used.


Implementation
    public function get identifier():uint
privateBytesproperty 
privateBytes:ByteArray  [read-only]

Byte array containing the payload of private command.


Implementation
    public function get privateBytes():ByteArray
typeproperty 
type:uint  [read-only]

Returns the type of the splice command. See the SpliceCommandType enumeration for possible values.


Implementation
    public function get type():uint
Constructor Detail
PrivateCommand()Constructor
public function PrivateCommand(identifier:uint, privateBytes:ByteArray)

Default constructor.

Parameters
identifier:uint — Unique identifier of the owner of this command.
 
privateBytes:ByteArray — Payload of the private command.