/// <summary>fires the initialized event</summary>
 /// <param name="device">The device.</param>
 internal void sendAttached(BrailleIODevice device)
 {
     fireInitialized(new BrailleIO_Initialized_EventArgs(device));
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="InteractionQueueItem"/> struct.
 /// </summary>
 /// <param name="timestamp">The timestamp when the input happens.</param>
 /// <param name="type">The type of the input.</param>
 /// <param name="device">The device from which ii was sent.</param>
 /// <param name="args">The <see cref="System.EventArgs"/> instance containing the event data.</param>
 /// <param name="sender">The sending Adapter.</param>
 public InteractionQueueItem(DateTime timestamp, InteractionQueueObjectType type, BrailleIODevice device, EventArgs args, Object sender)
 {
     Timestamp = timestamp; Type = type; Device = device; Args = args; Sender = sender;
 }