/* * Copyright (c) Facebook, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include namespace folly { namespace fibers { class Fiber; class FiberManager; class LoopController { public: typedef std::chrono::steady_clock Clock; typedef std::chrono::time_point TimePoint; virtual ~LoopController() {} /** * Called by FiberManager to associate itself with the LoopController. */ virtual void setFiberManager(FiberManager*) = 0; /** * Called by FiberManager to schedule the loop function run * at some point in the future. */ virtual void schedule() = 0; /** * Run FiberManager loopUntilNoReadyImpl(). May have additional logic specific * to a LoopController. */ virtual void runLoop() = 0; /** * Run FiberManager runEagerFiberImpl(fiber). May have additional logic * specific to a LoopController. */ virtual void runEagerFiber(Fiber*) = 0; /** * Same as schedule(), but safe to call from any thread. */ virtual void scheduleThreadSafe() = 0; /** * Used by FiberManager to schedule some function to be run at some time. * May return null, but only if called outside of runLoop() call (e.g. if * Executor backing the timer is already destroyed). */ virtual HHWheelTimer* timer() = 0; }; } // namespace fibers } // namespace folly