All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.tid.pce.pcepsession.PCEPSession Maven / Gradle / Ivy

The newest version!
package es.tid.pce.pcepsession;

import es.tid.pce.pcep.messages.PCEPMessage;

public interface PCEPSession {
	
	/**
	 * Send close message and finish the PCEP Session
	 * @param reason -
	 */
	public void close(int reason);
	/**
	 * Finish the PCEP Session abruptly, 
	 */
	public void killSession();
	/*
	 * Encodes and sends PCEP Message
	 * If the message is bad encoded, the session is closed
	 */
	public void sendPCEPMessage(PCEPMessage message);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy