blob: 427a5197e8aed7ff01492fdaa4faa9a4ed00d7a8 [file] [log] [blame]
// Copyright 2021 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.
/// Defines a service that can be started and stopped.
abstract class TaskService {
Future<void> start();
Future<void> stop();
void dispose();
}