blob: 3b57ea6a8a3ac83497f057ff16292f82eda7854f [file] [log] [blame]
// Copyright 2019 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.
library fuchsia.space;
enum ErrorCode : uint32 {
INTERNAL = 1;
};
[Discoverable]
protocol Manager {
/// Trigger a garbage collection.
Gc() -> () error ErrorCode;
};