Package ola.proto.Ola

Examples of ola.proto.Ola.PortPriorityRequest


     * Set port priority.
     *
     * @return true if request succeeded.
     */
    public boolean setPortPriority(int device, int port, int priority, int mode, boolean output) {
        PortPriorityRequest request = PortPriorityRequest.newBuilder()
            .setDeviceAlias(device)
            .setPortId(port)
            .setPriority(priority)
            .setPriorityMode(mode)
            .setIsOutput(output)
View Full Code Here

TOP

Related Classes of ola.proto.Ola.PortPriorityRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.