blob: f7c165b0e12aba47572eb02b0d2907b7a8ef6ac7 [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 {
generation uint32;
});
strict Disconnect() -> ();
};