• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • incubator
  • protobuf
  • src
  • main
  • proto
  • LinkEvent.proto
  • Shravan Ambati's avatar
    Kafka Integration Application (Fix Javadoc errors + review comments) · bb6b4458 ...
    bb6b4458
    1. Refactored the application into two java projects api and app as per convention
    2. Deleted the onos-app-gpb project. The proto files are consolidated in the
       incubator-protobuf project as per suggestions.
    3. Some code to translate ONOS Event pojo messages to GPB format.
    4. Implementation of Subscribe and Unsubscribe APIs.
    5. Minor changes due to review comments from 9212 and 9053
    6. Refactored the proto fileso that its a 1:1 mapping between the core type to proto message.
    
    Change-Id: I2bcc0de96150f838ccfe9e49293fe61d94062628
    Shravan Ambati authored 2016-05-31 18:06:28 -0700
LinkEvent.proto 368 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
syntax = "proto3";
option java_package = "org.onosproject.grpc.net";

package LinkEvent;

import "Link.proto";

// Corresponds to org.onosproject.net.link.LinkEvent.
message LinkNotification {
    LinkEventType linkEventType = 2;
    Link.LinkCore link = 3;
}

// Link Event Types
enum LinkEventType {
    LINK_ADDED = 0;
    LINK_UPDATED = 1;
    LINK_REMOVED = 2;
}