01: package seda.apps.Haboob;
02:
03: import seda.sandStorm.api.*;
04: import seda.sandStorm.core.*;
05: import seda.sandStorm.lib.http.*;
06:
07: public interface HaboobConst {
08:
09: public static final String HTTP_RECV_STAGE = "HttpRecv";
10: public static final String CACHE_STAGE = "CacheStage";
11: public static final String BOTTLENECK_STAGE = "BottleneckStage";
12: public static final String HTTP_SEND_STAGE = "HttpSend";
13: public static final String DYNAMIC_HTTP_STAGE = "DynamicHttp";
14: }
|