pynetdicom._handlers.doc_handle_dimse#
- pynetdicom._handlers.doc_handle_dimse(event: Event, *args: Sequence[Any]) None[source]#
Documentation for handlers bound to
evt.EVT_DIMSE_RECVorevt.EVT_DIMSE_SENT.- Parameters:
event (events.Event) –
Represents the DIMSE service provider decoding a DIMSE message after receiving the final P-DATA primitive that contained it, or encoding and converting a DIMSE message into P-DATA primitives. Event attributes are:
assoc: theAssociationthat is running the service that received the user identity negotiation request.event: the event that occurred asNotificationEvent.message: the DIMSE message encoding or decoded. One ofC_ECHO_RQ,C_ECHO_RSP,C_FIND_RQ,C_FIND_RSP,C_GET_RQ,C_GET_RSP,C_MOVE_RQ,C_MOVE_RSP,C_STORE_RQ,C_STORE_RSP,N_ACTION_RQ,N_ACTION_RSP,N_CREATE_RQ,N_CREATE_RSP,N_DELETE_RQ,N_DELETE_RSP,N_EVENT_REPORT_RQ,N_EVENT_REPORT_RSP,N_GET_RQ,N_GET_RSP,N_SET_RQorN_SET_RSPtimestamp: the date and time that the message was processed asdatetime.datetime.
args – If the handler was bound to the event using
bind(event, handler, args)or by passingevt_handlers=[(event, handler, args), ...], where args is alistthen there will be one or more optional extra parameters matching the contents of args.