From 269bacbedbcd2cddf03e985ebdd95ffbd3e74dcb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Milo=C5=A1=20Mula=C4=8D?= Date: Thu, 8 Jun 2006 14:31:47 +0000 Subject: [PATCH] maybe a bit paranoid comments --- org.glite.lb.server/interface/srv_perf.h | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) 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, }; -- 1.8.2.3