From: Miloš Mulač Date: Thu, 8 Jun 2006 14:31:47 +0000 (+0000) Subject: maybe a bit paranoid comments X-Git-Tag: gridsite-core_R_1_3_1~9 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=269bacbedbcd2cddf03e985ebdd95ffbd3e74dcb;p=jra1mw.git maybe a bit paranoid comments --- diff --git a/org.glite.lb.server/interface/srv_perf.h b/org.glite.lb.server/interface/srv_perf.h index 621a60e..1feedb1 100644 --- a/org.glite.lb.server/interface/srv_perf.h +++ b/org.glite.lb.server/interface/srv_perf.h @@ -1,8 +1,21 @@ enum lb_srv_perf_sink { - GLITE_LB_SINK_NONE = 0, - GLITE_LB_SINK_PARSE, - GLITE_LB_SINK_STORE, - GLITE_LB_SINK_STATE, + GLITE_LB_SINK_NONE = 0, // standard behaviour, no sinking + + GLITE_LB_SINK_PARSE, // skip everything, only read message and + // generate reply + // skips decode_il_msg, db_store + + GLITE_LB_SINK_STORE, // do no store data to DB, only decode_il_msg + // and edg_wll_ParseEvent + // skips edg_wll_LockJob, edg_wll_StoreEvent + // edg_wll_UpdateACL, edg_wll_StepIntState, + // edg_wll_EventSendProxy, edg_wll_NotifMatch + + GLITE_LB_SINK_STATE, // do not perform state computation, only save + // event to DB + // skips edg_wll_StepIntState + // edg_wll_EventSendProxy, edg_wll_NotifMatch + GLITE_LB_SINK_SEND, };