blob: 7f5e2145f3e1f0cfe6decc80f988cc3ab949706f [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(string:100 event) -> ();
};