LDicomAssociate::IsAsyncOperations

Summary

Determines whether Asynchronous Operations are supported.

Syntax

#include "ltdic.h"

L_BOOL LDicomAssociate::IsAsyncOperations(L_VOID)

Returns

Value Meaning
TRUE The DICOM Associate supports Asynchronous Operations.
FALSE The DICOM Associate does not support Asynchronous Operations.

Comments

If a DICOM Associate connection does not support Asynchronous Operations, then an Application Entity must wait for the response from one message before sending another. If Asynchronous Operations are supported, multiple messages may be sent without waiting for a response. The number of messages that may be sent is set using LDicomAssociate::SetAsyncOperations.

To determine the number of Asynchronous Operations that may be invoked without a response, call LDicomAssociate::GetInvokedOperations. To determine the number of operations that have been completed, call LDicomAssociate::GetPerformedOperations.

Required DLLs and Libraries

Platforms

Win32, x64

See Also

Functions

Topics

Example

L_INT LDicomAssociate_IsAsyncOperationsExample(LDicomAssociate *m_pDicomAssociate) 
{ 
   L_INT    nRet; 
   CString  cStr; 
 
   //...Assume associate object has been created 
   if (m_pDicomAssociate->IsAsyncOperations() ) 
   { 
      //get the operations counts 
      L_UINT16 lInvoked = m_pDicomAssociate->GetInvokedOperations(); 
      L_UINT16 lPerformed = m_pDicomAssociate->GetPerformedOperations(); 
       
      //now disable it 
      nRet = m_pDicomAssociate->SetAsyncOperations( FALSE, 0, 0); 
      if(nRet != DICOM_SUCCESS) 
         return nRet; 
      cStr.Format(TEXT("AsyncOperations Disabled:\n\tInvoked[%d]\n\tPerformed[%d]"), lInvoked, lPerformed); 
      AfxMessageBox(cStr); 
   } 
   else 
   { 
      nRet = m_pDicomAssociate->SetAsyncOperations( TRUE, 0, 0); 
      if(nRet != DICOM_SUCCESS) 
         return nRet; 
      AfxMessageBox(TEXT("AsyncOperations enabled")); 
   } 
   return DICOM_SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS DICOM C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.