blob: c31ebe8b64553109a89bc6a819bc0b02c4043f39 [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.
protocol ExampleEventMonitor {
OnEvent(struct {
event string:100;
}) -> ();
};