
org.btrplace.model.view.network.SwitchBuilder Maven / Gradle / Ivy
/*
* Copyright 2020 The BtrPlace Authors. All rights reserved.
* Use of this source code is governed by a LGPL-style
* license that can be found in the LICENSE.txt file.
*/
package org.btrplace.model.view.network;
import org.btrplace.Copyable;
/**
* Interface to specify a builder to create switches.
* Each created switch is guarantee for being unique.
*
* @author Vincent Kherbache
*/
public interface SwitchBuilder extends Copyable {
/**
* Generate a new non-blocking Switch.
*
* @return {@code null} if no identifiers are available for the Switch.
*/
Switch newSwitch();
/**
* Generate a new Switch.
*
* @param id the identifier to use for the Switch.
* @param capacity the switch bandwidth
* @return a Switch or {@code null} if the identifier is already used.
*/
Switch newSwitch(int id, int capacity);
/**
* Generate a new Switch.
*
* @param capacity the maximal BW capacity of the switch
* @return {@code null} if no identifiers are available for the Switch.
*/
Switch newSwitch(int capacity);
/**
* Check if a given Switch has been defined fot this network view.
*
* @param sw the Switch to check.
* @return {@code true} if the Switch already exists.
*/
boolean contains(Switch sw);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy