blob: 2677ad39ae794775bc177b1248619972575201d6 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PERIDOT_BIN_LEDGER_COROUTINE_COROUTINE_IMPL_H_
#define PERIDOT_BIN_LEDGER_COROUTINE_COROUTINE_IMPL_H_
#include <memory>
#include <vector>
#include <lib/fit/function.h>
#include <lib/fxl/macros.h>
#include "peridot/bin/ledger/coroutine/coroutine.h"
namespace context {
class Stack;
}
namespace coroutine {
class CoroutineServiceImpl : public CoroutineService {
public:
CoroutineServiceImpl();
~CoroutineServiceImpl() override;
// CoroutineService.
void StartCoroutine(fit::function<void(CoroutineHandler*)> runnable) override;
private:
class CoroutineHandlerImpl;
std::vector<std::unique_ptr<context::Stack>> available_stack_;
std::vector<std::unique_ptr<CoroutineHandlerImpl>> handlers_;
FXL_DISALLOW_COPY_AND_ASSIGN(CoroutineServiceImpl);
};
} // namespace coroutine
#endif // PERIDOT_BIN_LEDGER_COROUTINE_COROUTINE_IMPL_H_