app_events_handlers

39 rows


Description

This table is for storing which components requests what type of event, and the location of the responsible handlers. For example, the assignment registers ‘grade_updated’ event with a function assignment_grade_handler() that should be called event t

Columns

Column Type Size Nulls Auto Default Children Parents Comments
id bigserial 19 nextval('app_events_handlers_id_seq'::regclass)
app_events_queue_handlers.handlerid Defined in XMLR
eventname varchar 166 ''::character varying
component varchar 166 ''::character varying
handlerfile varchar 255 ''::character varying
handlerfunction text 2147483647 null
schedule varchar 255 null
status int8 19 0
internal int2 5 1

Indexes

Constraint Name Type Sort Column(s)
app_evenhand_id_pk Primary key Asc id
app_evenhand_evecom_uix Must be unique Asc/Asc eventname + component

Relationships