Server status update event
Used by the controller to trigger popularity modifications for web sites.
NEW: The definition has been migrated to OMNeT++ 4.0 and the latest INET version.
Author: Kristjan V. Jonsson
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
www | string |
Name of the WWW site. |
setTime | simtime_t |
The event set time. |
eventKind | int |
The event kind, e.g. ss_special. |
pvalue | double |
The initial elevated probability. |
pamortize | double |
The amortization factor -- i.e. how much the pvalue is decreased on each hit. |
// // Server status update event // // Used by the controller to trigger popularity modifications for web sites. // // NEW: The definition has been migrated to OMNeT++ 4.0 and the latest INET version. // // @author Kristjan V. Jonsson // packet HttpServerStatusUpdateMsg { @omitGetVerb(true); @fieldNameSuffix("_var"); string www; // Name of the WWW site. simtime_t setTime; // The event set time. int eventKind; // The event kind, e.g. ss_special. double pvalue; // The initial elevated probability. double pamortize; // The amortization factor -- i.e. how much the pvalue is decreased on each hit. }