blob: bbb6f93d9ed2f6dee2e3e5a7f3a1d72c8693e0ef [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
closed protocol Test {
strict Ping() -> (struct {
gen uint32;
});
strict Disconnect() -> ();
};