blob: c1868108d5d6abaf9b604b8c960dd08f3f6ab70b [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.
library fuchsia.systemmonitor;
using zx;
@discoverable
protocol Harvester {
/// Connect a socket over which the legacy gRPC protocol can be used.
ConnectGrpc(resource struct {
socket zx.handle:SOCKET;
}) -> (struct {}) error zx.status;
};