- // 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 BOTH - override at will
+ // Default behaviour is to delete connection and return true
+ virtual bool OnDisconnect(void) { delete this; return true; }