blob: b376c2639129fa684bdcfb66bb5a6617cbe0f083 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -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.event;
tom32f66842014-08-27 19:27:47 -070017
18/**
19 * Abstraction of an entity capable of accepting events to be posted and
20 * then dispatching them to the appropriate event sink.
21 */
tom96dfcab2014-08-28 09:26:03 -070022public interface EventDeliveryService extends EventDispatcher, EventSinkRegistry {
Thomas Vachuska36002e62015-05-19 16:12:29 -070023
24 /**
25 * Sets the number of millis that an event sink has to process an event.
26 *
27 * @param millis number of millis allowed per sink per event
28 */
29 void setDispatchTimeLimit(long millis);
30
31 /**
32 * Returns the number of millis that an event sink has to process an event.
33 *
34 * @return number of millis allowed per sink per event
35 */
36 long getDispatchTimeLimit();
37
tom32f66842014-08-27 19:27:47 -070038}