001 package net.minecraft.src;
002
003 import java.util.concurrent.Callable;
004 import net.minecraft.server.MinecraftServer;
005
006 public class CallableServerMemoryStats implements Callable
007 {
008 final MinecraftServer mcServer;
009
010 public CallableServerMemoryStats(MinecraftServer par1MinecraftServer)
011 {
012 this.mcServer = par1MinecraftServer;
013 }
014
015 public String func_82551_a()
016 {
017 return MinecraftServer.getServerConfigurationManager(this.mcServer).getCurrentPlayerCount() + " / " + MinecraftServer.getServerConfigurationManager(this.mcServer).getMaxPlayers() + "; " + MinecraftServer.getServerConfigurationManager(this.mcServer).playerEntityList;
018 }
019
020 public Object call()
021 {
022 return this.func_82551_a();
023 }
024 }