Interface

HitakiTimestampedQuadletNotification

Description [src]

interface Hitaki.TimestampedQuadletNotification : GObject.Object

An interface to operate notification with quadlet message and time stamp. Some of units supported by drivers in ALSA firewire stack have the function to notify quadlet message and time stamp for specific purposes. The HitakiTimestampedQuadletNotification is an interface to operate the notification.

Prerequisite

In order to implement TimestampedQuadletNotification, your type must inherit from GObject.

Implementations

Signals

Hitaki.TimestampedQuadletNotification::notified-at

Emitted when the target unit transfers notification.

Interface structure

struct HitakiTimestampedQuadletNotificationInterface {
  GTypeInterface iface;
  void (* notified_at) (
    HitakiTimestampedQuadletNotification* self,
    guint message,
    guint tstamp
  );
  
}
Interface members
iface
GTypeInterface
 No description available.
notified_at
void (* notified_at) (
    HitakiTimestampedQuadletNotification* self,
    guint message,
    guint tstamp
  )
 No description available.

Virtual methods