fired when intermediate responses are received from the remote application
Visual Basic |
---|
Public Event ActionUpdate( _ ByVal Connection As DicomConnection, _ ByVal Action As String, _ ByVal Tag As Variant, _ ByVal ResponseType As String, _ ByVal LastResponse As Long, _ ByVal LastDataSet As Long, _ ByVal LastImage As Long _ ) |
This Event will be generated when responses are received from the remote application. The situations where this occurs are:
This event occurs asynchronously to prevent deadlocks, so by the time it fires, further data may have been added to the collection. That is why the LastXXX parameters are included, as by using them it is possible to ensure that each response is processed once and only once – you cannot assume that the last item in a collection is the one to be processed on any firing of this event.