es.tid.pce.pcepsession.PCEPSession Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pce Show documentation
Show all versions of pce Show documentation
Path Computation Element
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