Example Active Object (Cont.) The active object will be represented by the following data structure: /* opaque pointer to the active object. */ typedef struct file_handler_data* file_handler_t; The actual struct will be defined in the implementation file: struct file_handler_data { struct cmd_queue* q; pthread_t intern_thread; };