blob: b30af1853fc008293af995d05064acd14c61f6c7 [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() -> (struct {
gen uint32;
});
Disconnect() -> ();
};