/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.protocol.pcep; import java.util.EventListener; import org.eclipse.jdt.annotation.NonNullByDefault; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Message; /** * Listener that receives session informations from the session. */ @NonNullByDefault public interface PCEPSessionListener extends EventListener { /** * Fired when the session was established successfully. * * @param session Peer address families which we accepted */ void onSessionUp(PCEPSession session); /** * Fired when the session went down because of an IO error. Implementation should take care of closing underlying * session. * * @param session that went down * @param exception Exception that was thrown as the cause of session being down */ void onSessionDown(PCEPSession session, Exception exception); /** * Fired when the session is terminated locally. The session has already been closed and transitioned to IDLE state. * Any outstanding queued messages were not sent. The user should not attempt to make any use of the session. * * @param reason the cause why the session went down */ void onSessionTerminated(PCEPSession session, PCEPTerminationReason reason); /** * Fired when a normal protocol message is received. * * @param message Protocol message */ void onMessage(PCEPSession session, Message message); }