+ // Callbacks to SERVER - override at will
+ virtual bool OnExecute(const wxString& topic, char *data, int size, wxIPCFormat format) { return FALSE; };
+ virtual char *OnRequest(const wxString& topic, const wxString& item, int *size, wxIPCFormat format) { return NULL; };
+ virtual bool OnPoke(const wxString& topic, const wxString& item, char *data, int size, wxIPCFormat format) { return FALSE; };
+ virtual bool OnStartAdvise(const wxString& topic, const wxString& item) { return FALSE; };
+ virtual bool OnStopAdvise(const wxString& topic, const wxString& item) { return FALSE; };
+
+ // Callbacks to CLIENT - override at will
+ virtual bool OnAdvise(const wxString& topic, const wxString& item, char *data, int size, wxIPCFormat format) { return FALSE; };
+
+ // Callbacks to BOTH
+
+ // Default behaviour is to delete connection and return TRUE
+ virtual bool OnDisconnect(void) { delete this; return TRUE; }