blob: e800d13338f8c5f95f74e5cbe3f32f8cf1658a6a [file] [log] [blame]
// Copyright 2017 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 component_context_test;
// An interface implemented by component_context_test_one_agent.cc) which the
// root module uses.
[ServiceName="modular.ComponentContextTestService"]
interface ComponentContextTestService {
// Send |message_to_send| to the message queue backed by
// |message_queue_token|.
1: SendToMessageQueue(string message_queue_token, string message_to_send);
};