blob: 37df79e3343bf3ab016ee205b11247b91d4f4dbe [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 fuchsia.netemul.example;
/// Sample interface that keeps a stateful integer counter starting at zero
[Discoverable]
protocol Counter {
/// Increments internal counter by one and returns new counter value
Increment() -> (uint32 value);
};