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_RECV
orevt.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
: theAssociation
that 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_RQ
orN_SET_RSP
timestamp
: 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 alist
then there will be one or more optional extra parameters matching the contents of args.