blob: 75915caecd69c3bce71384c63f3088d44a80a2c8 [file] [log] [blame]
// Copyright 2020 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 test.fidl.connector;
// This is an example event monitor FIDL protocol that can be used with the event queue library.
[Discoverable]
protocol Test {
Ping() -> (uint32 gen);
Disconnect() -> ();
};