FileRegistryServiceProperty.h
1 
11 #ifndef WRENCH_FILEREGISTRYPROPERTY_H
12 #define WRENCH_FILEREGISTRYPROPERTY_H
13 
14 #include "wrench/services/ServiceProperty.h"
15 
16 namespace wrench {
17 
22 
23  public:
24 
28  DECLARE_PROPERTY_NAME(LOOKUP_COMPUTE_COST);
29 
34  DECLARE_PROPERTY_NAME(ADD_ENTRY_COMPUTE_COST);
35 
40  DECLARE_PROPERTY_NAME(REMOVE_ENTRY_COMPUTE_COST);
41 
42  };
43 
44 };
45 
46 
47 #endif //WRENCH_FILEREGISTRYPROPERTY_H
static const std::string LOOKUP_COMPUTE_COST
The computational cost, in flops, of looking entries for a file.
Definition: FileRegistryServiceProperty.h:28
Configurable properties for a Service.
Definition: ServiceProperty.h:25
static const std::string ADD_ENTRY_COMPUTE_COST
The computational cost, in flops, of adding, an entry for a file.
Definition: FileRegistryServiceProperty.h:34
Definition: Alarm.cpp:20
Configurable properties for a FileRegistryService.
Definition: FileRegistryServiceProperty.h:21
static const std::string REMOVE_ENTRY_COMPUTE_COST
The computational cost, in flops, of removing an entry for a file.
Definition: FileRegistryServiceProperty.h:40