1// Copyright 2018 The Fuchsia Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5library fidl.examples.example10; 6 7[Discoverable] 8interface Thing { 9 1: one_function(string s, bool b) -> (); 10 [ Selector = "Furshlugginer" ] 11 two_function(string s, bool b); 12 three_function(string s, request<Thing> r); 13 four_function(string s, request<Thing> r) -> (handle<channel> r); 14}; 15