1'-------------------------------------------------------------------------------
2' Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
3'
4' SPDX-License-Identifier: BSD-3-Clause
5'
6'-------------------------------------------------------------------------------
7
8@startuml
9
10class rpc_caller {
11	{abstract}int call(opcode, param_buf, result_buf)
12}
13
14rpc_caller -> call_ep
15note right on link
16Association with call_ep is made when
17RPC session is established.
18end note
19
20@enduml