blob: 5528495625b632b86115ebde2a621be9f3660d61 [file] [log] [blame]
// Copyright 2019 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.pkg.eventqueue;
// This is an example event monitor FIDL protocol that can be used with the event queue library.
closed protocol ExampleEventMonitor {
strict OnEvent(struct {
event string:100;
}) -> ();
};