blob: 69118fd20183882e534fa7f953b2b75cd3d30c23 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.base.task;
/**
* Tasks posted will be run in order with respect to this sequence, but they may be executed
* on arbitrary threads. Unless specified otherwise by the provider of a given
* SequencedTaskRunner, tasks posted to it have no ordering, nor mutual exclusion, execution
* guarantees w.r.t. other SequencedTaskRunners.
*/
public interface SequencedTaskRunner extends TaskRunner {}