Apache Mesos
local.hpp
Go to the documentation of this file.
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License. You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 
17 #ifndef __MESOS_LOCAL_HPP__
18 #define __MESOS_LOCAL_HPP__
19 
21 
22 #include <process/process.hpp>
23 
24 #include "local/flags.hpp"
25 
26 // Forward declarations.
27 namespace mesos {
28 namespace internal {
29 
30 namespace master {
31 class Master;
32 } // namespace master {
33 
34 class Configuration;
35 
36 namespace local {
37 
38 // Launch a local cluster with the given flags.
40  const Flags& flags,
41  mesos::allocator::Allocator* _allocator = nullptr);
42 
43 void shutdown();
44 
45 } // namespace local {
46 } // namespace internal {
47 } // namespace mesos {
48 
49 #endif // __MESOS_LOCAL_HPP__
Definition: master.hpp:27
process::PID< master::Master > launch(const Flags &flags, mesos::allocator::Allocator *_allocator=nullptr)
Definition: agent.hpp:25
Basic model of an allocator: resources are allocated to a framework in the form of offers...
Definition: allocator.hpp:172
A "process identifier" used to uniquely identify a process when dispatching messages.
Definition: pid.hpp:289
Definition: attributes.hpp:24
Definition: parse.hpp:33