WRENCH
1.10
Cyberinfrastructure Simulation Workbench
Overview
Installation
Getting Started
WRENCH 101
WRENCH 102
APIs Reference
User
Developer
Internal
include
wrench
services
compute
ComputeServiceProperty.h
1
11
#ifndef WRENCH_COMPUTESERVICEPROPERTY_H
12
#define WRENCH_COMPUTESERVICEPROPERTY_H
13
14
#include "wrench/services/ServiceProperty.h"
15
16
namespace
wrench
{
17
21
class
ComputeServiceProperty
:
public
ServiceProperty
{
22
public
:
24
DECLARE_PROPERTY_NAME(
SUPPORTS_STANDARD_JOBS
);
26
DECLARE_PROPERTY_NAME(
SUPPORTS_PILOT_JOBS
);
27
};
28
};
29
30
#endif //WRENCH_COMPUTESERVICEPROPERTY_H
wrench::ServiceProperty
Configurable properties for a Service.
Definition:
ServiceProperty.h:25
wrench::ComputeServiceProperty
Configurable properties for a ComputeService.
Definition:
ComputeServiceProperty.h:21
wrench
Definition:
Alarm.cpp:20
wrench::ComputeServiceProperty::SUPPORTS_PILOT_JOBS
static const std::string SUPPORTS_PILOT_JOBS
Whether the compute service supports pilot jobs (true or false)
Definition:
ComputeServiceProperty.h:26
wrench::ComputeServiceProperty::SUPPORTS_STANDARD_JOBS
static const std::string SUPPORTS_STANDARD_JOBS
Whether the compute service supports standard jobs (true or false)
Definition:
ComputeServiceProperty.h:24