blob: 5a920516f212bf7a1fa3c5965aa1cfa46af62e97 [file] [log] [blame]
Brian O'Connorfa81eae2014-10-30 13:20:05 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Brian O'Connorfa81eae2014-10-30 13:20:05 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorfa81eae2014-10-30 13:20:05 -070017
Brian O'Connor9476fa12015-06-25 15:17:17 -040018import com.google.common.annotations.Beta;
19
Brian O'Connorb499b352015-02-03 16:46:15 -080020import java.util.Collection;
21
Brian O'Connorfa81eae2014-10-30 13:20:05 -070022/**
23 * Facade for receiving notifications from the intent batch service.
24 */
Brian O'Connor9476fa12015-06-25 15:17:17 -040025@Beta
Brian O'Connorfa81eae2014-10-30 13:20:05 -070026public interface IntentBatchDelegate {
27
28 /**
29 * Submits the specified batch of intent operations for processing.
30 *
31 * @param operations batch of operations
32 */
Brian O'Connorb499b352015-02-03 16:46:15 -080033 void execute(Collection<IntentData> operations);
Brian O'Connorfa81eae2014-10-30 13:20:05 -070034
Brian O'Connorfa81eae2014-10-30 13:20:05 -070035}