20 lines
434 B
Java
20 lines
434 B
Java
/*
|
|
* Title: CloudSimSDN
|
|
* Description: SDN extension for CloudSim
|
|
* Licence: GPL - http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
* Copyright (c) 2015, The University of Melbourne, Australia
|
|
*/
|
|
|
|
package org.cloudbus.cloudsim.sdn;
|
|
|
|
/**
|
|
* Activities that can be performed by VM. (Transmission or Compute)
|
|
*
|
|
* @author Jungmin Son
|
|
* @author Rodrigo N. Calheiros
|
|
* @since CloudSimSDN 1.0
|
|
*/
|
|
public interface Activity {
|
|
}
|