blob: 9ad37855309b49cbfcb80f8574a899c48a461c1c [file] [log] [blame]
// Copyright 2018 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.
#include <lib/async/dispatcher.h>
#include <lib/fit/function.h>
namespace btlib {
namespace common {
// Runs |task|. Posts it on |dispatcher| if dispatcher is not null.
void RunOrPost(fit::closure task, async_dispatcher_t* dispatcher);
} // namespace common
} // namespace btlib