folly/folly/executors/Codel.cpp

/*
 * Copyright (c) Meta Platforms, Inc. and 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.
 */

#include <folly/executors/Codel.h>

#include <algorithm>
#include <stdexcept>

#include <folly/portability/GFlags.h>

FOLLY_GFLAGS_DEFINE_int32();
FOLLY_GFLAGS_DEFINE_int32();

usingnamespacestd::chrono;

namespace folly {

Codel::Codel()
    :{}

Codel::Codel(const Options& options)
    :{}

bool Codel::overloaded_explicit_now(
    nanoseconds delay, steady_clock::time_point now) {}

int Codel::getLoad() {}

void Codel::setOptions(Options const& options) {}

const Codel::Options Codel::getOptions() const {}

nanoseconds Codel::getMinDelay() {}

steady_clock::time_point Codel::getIntervalTime() {}

milliseconds Codel::getSloughTimeout(milliseconds delay) const {}

} // namespace folly