X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=doc%2Fapi.xml;h=062d326bdc6994d76e9a9307f5c80f2b5fc1fa5d;hb=239a8636c42a58275fede4965d00570dd94a35ee;hp=5a593711b25abdd04b8964d5526d4105dfbfffa0;hpb=6237bfee0d4ae98813f4d52779eaf5b569d1f54f;p=yazpp-moved-to-github.git diff --git a/doc/api.xml b/doc/api.xml index 5a59371..062d326 100644 --- a/doc/api.xml +++ b/doc/api.xml @@ -3,7 +3,7 @@ YAZ C++ API The YAZ C++ API is an client - and server API that exposes - all YAZ features. The API doesn't hide YAZ C datastructures, but + all YAZ features. The API doesn't hide YAZ C data structures, but provides a set of useful high-level objects for creating clients - and servers. @@ -43,7 +43,7 @@ virtual void deleteObserver(IYazSocketObserver *observer) = 0; // Delete all observers virtual void deleteObservers() = 0; - // Specify the events that the observer is intersted in. + // Specify the events that the observer is interested in. virtual void maskObserver(IYazSocketObserver *observer, int mask) = 0; // Specify timeout @@ -52,7 +52,7 @@ }; -
IYazZSocketObserver +
IYazSocketObserver This interface is interested in socket events supporting the IYazSocketObservable @@ -229,7 +229,7 @@ public: // Create object using the PDU Observer specified Yaz_Z_Assoc(IYaz_PDU_Observable *the_PDU_Observable); - // Destroy assocation and close PDU Observer + // Destroy association and close PDU Observer virtual ~Yaz_Z_Assoc(); // Receive PDU void recv_PDU(const char *buf, int len); @@ -327,24 +327,6 @@ uses this class.
-
Yaz_Proxy - - This object is a specialization of - Yaz_Z_Assoc and implements - the YAZ proxy. - - - #include <yaz++/proxy.h> - - class Yaz_Proxy : public Yaz_Z_Server { - ... - }; - - - The proxy server, yaz-proxy-main.cpp, - uses this class. - -