VMInterface.php 400 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Interface VirtualMachineInterface
  5. */
  6. interface VirtualMachineInterface
  7. {
  8. /**
  9. * @return mixed
  10. */
  11. function connect();
  12. /**
  13. * @return mixed
  14. */
  15. function runCron();
  16. /**
  17. * @return mixed
  18. */
  19. function resizeToMaxLimit();
  20. /**
  21. * @return mixed
  22. */
  23. function resizeToMinLimit();
  24. }