blob: 00a86a544b7609e4b7b9a069fa784d6844b4fa2d [file] [log] [blame]
Devmalya Paul495b94a2019-08-27 19:42:00 -04001/*
2 * Copyright 2018-present Open Networking Foundation
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 */
16
17package adapterif
18
19import (
20 "github.com/opencord/voltha-protos/go/voltha"
21)
22
23// EventProxy interface for eventproxy
24type EventProxy interface {
25 SendDeviceEvent(deviceEvent *voltha.DeviceEvent, category EventCategory,
26 subCategory EventSubCategory, raisedTs int64) error
27}
28
29const (
30 EventTypeVersion = "0.1"
31)
32
33type (
34 EventType = voltha.EventType_EventType
35 EventCategory = voltha.EventCategory_EventCategory
36 EventSubCategory = voltha.EventSubCategory_EventSubCategory
37)