class MAGES::Recorder::EventPacket

Overview

An event packet. More…

class EventPacket: public MAGES::Recorder::Packet
{
public:
    // properties

    override PacketType Type;
    ICapturedEvent[] CapturedEvents;
    long FrameBegin;
    long FrameEnd;
    double RtssBegin;
    double RtssEnd;

    // methods

    EventPacket(ICapturedEvent[] capturedEvents);
};

Inherited Members

public:
    // properties

    PacketType Type;

Detailed Documentation

An event packet.

Properties

ICapturedEvent[] CapturedEvents

Gets the captured events.

long FrameBegin

Gets the earlist frame in the packet.

long FrameEnd

Gets the latest frame in the packet.

double RtssBegin

Gets the earliest RTSS in the packet.

double RtssEnd

Gets the latest RTSS in the packet.

Methods

EventPacket(ICapturedEvent[] capturedEvents)

Initializes a new instance of the EventPacket class.

Parameters:

capturedEvents

The captured events array.