blob: 18e925a71398252a1b5cefc88d47732b36884d8a [file] [log] [blame]
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Carmelo Casconef7aa3f92017-07-06 23:56:50 -04003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.p4runtime.api;
18
19import com.google.common.annotations.Beta;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040020import org.onosproject.event.ListenerService;
Yi Tseng2a340f72018-11-02 16:52:47 -070021import org.onosproject.grpc.api.GrpcClientController;
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040022
23/**
Carmelo Cascone3977ea42019-02-28 13:43:42 -080024 * Controller of P4Runtime clients.
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040025 */
26@Beta
Carmelo Casconee5b28722018-06-22 17:28:28 +020027public interface P4RuntimeController
Yi Tseng2a340f72018-11-02 16:52:47 -070028 extends GrpcClientController<P4RuntimeClientKey, P4RuntimeClient>,
29 ListenerService<P4RuntimeEvent, P4RuntimeEventListener> {
Andrea Campanella1e573442018-05-17 17:07:13 +020030
Carmelo Casconef7aa3f92017-07-06 23:56:50 -040031}