blob: 7f18c4e35c4bd095ce3f9140b1d90bdaa14ce342 [file] [log] [blame]
#include <folly/futures/ScheduledExecutor.h>
namespace folly {
void ScheduledExecutor::schedule(Func&& a, ScheduledExecutor::Duration const& dur)
{
scheduleAt(std::move(a), now() + dur);
}
} // folly