From 78d1474884c30ecfe89b3f9e2b7ffad95bd9583b Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 30 Nov 2000 17:10:32 +0000 Subject: [PATCH] removed disconnect virtual func --- src/ca/netReadCopyIO.cpp | 8 +------- src/ca/netReadNotifyIO.cpp | 6 ------ src/ca/netWriteNotifyIO.cpp | 6 ------ 3 files changed, 1 insertion(+), 19 deletions(-) diff --git a/src/ca/netReadCopyIO.cpp b/src/ca/netReadCopyIO.cpp index 1ffd71cc8..f657234a9 100644 --- a/src/ca/netReadCopyIO.cpp +++ b/src/ca/netReadCopyIO.cpp @@ -29,12 +29,6 @@ netReadCopyIO::~netReadCopyIO () } -void netReadCopyIO::disconnect ( const char *pHostName ) -{ - this->exceptionNotify ( ECA_DISCONN, pHostName ); - this->baseNMIU::destroy (); -} - void netReadCopyIO::completionNotify () { this->exceptionNotify ( ECA_INTERNAL, "get completion callback with no data?" ); @@ -46,7 +40,7 @@ void netReadCopyIO::completionNotify ( unsigned typeIn, if ( typeIn <= (unsigned) LAST_BUFFER_TYPE ) { # ifdef CONVERSION_REQUIRED (*cac_dbr_cvrt[type]) ( pDataIn, this->pValue, - FALSE, countIn ); + FALSE, countIn ); # else memcpy ( this->pValue, pDataIn, dbr_size_n ( typeIn, countIn ) ); diff --git a/src/ca/netReadNotifyIO.cpp b/src/ca/netReadNotifyIO.cpp index 186bef624..304833808 100644 --- a/src/ca/netReadNotifyIO.cpp +++ b/src/ca/netReadNotifyIO.cpp @@ -30,12 +30,6 @@ void netReadNotifyIO::destroy () this->baseNMIU::destroy (); } -void netReadNotifyIO::disconnect ( const char *pHostName ) -{ - this->cacNotifyIO::exceptionNotify ( ECA_DISCONN, pHostName ); - this->baseNMIU::destroy (); -} - void netReadNotifyIO::completionNotify () { this->cacNotifyIO::exceptionNotify ( ECA_INTERNAL, "no data returned ?" ); diff --git a/src/ca/netWriteNotifyIO.cpp b/src/ca/netWriteNotifyIO.cpp index cc87bf83c..cf86e9a29 100644 --- a/src/ca/netWriteNotifyIO.cpp +++ b/src/ca/netWriteNotifyIO.cpp @@ -30,12 +30,6 @@ void netWriteNotifyIO::destroy () this->baseNMIU::destroy (); } -void netWriteNotifyIO::disconnect ( const char *pHostName ) -{ - this->exceptionNotify (ECA_DISCONN, pHostName); - this->baseNMIU::destroy (); -} - void netWriteNotifyIO::completionNotify () { this->cacNotifyIO::completionNotify ();