blob: 7db254570d10516a1fab78195f0d86ff925f2eae [file] [log] [blame]
Hongtao Yin142b7582015-01-21 14:41:30 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16package org.onosproject.net.flowext;
17
18import org.onosproject.net.flow.FlowRuleBatchRequest;
19import org.onosproject.net.flow.FlowRuleService;
20
21import java.util.concurrent.Future;
22
23/**
24 * Experimental extension to the flow rule subsystem; still under development.
25 * Service for injecting extended flow rules into the environment.
26 * This service just send the packet downstream. It won't store the
27 * flowRuleExtension in cache.
28 */
29public interface FlowRuleExtService extends FlowRuleService {
30 /**
31 * Applies a batch operation of FlowRules.
32 * this batch can be divided into many sub-batch by deviceId, and application
33 * gives a batchId, it means once one flowRule apply failed, all flow rules should
34 * withdraw.
35 *
36 * @param batch batch operation to apply
37 * @return future indicating the state of the batch operation
38 */
39 Future<FlowExtCompletedOperation> applyBatch(FlowRuleBatchRequest batch);
40}