View Javadoc
1 package net.sourceforge.backpedal.impl.server; 2 3 import net.sourceforge.backpedal.api.server.ServerControl; 4 5 public class ServerControlImpl implements ServerControl { 6 private boolean continueRunning = true; 7 8 public ServerControlImpl() { 9 } 10 11 public synchronized boolean continueRunning() { 12 return continueRunning; 13 } 14 15 public synchronized void stopRunning() { 16 continueRunning = false; 17 } 18 }

This page was automatically generated by Maven