}
@Override
public String process(long receptionTime)
{
InfoResponse info = new InfoResponse();
info.setName(gamer.getName());
info.setStatus(gamer.getMatch() == null ? "available" : "busy");
info.setSpecies(gamer.getSpecies());
return info.toSymbol().toString();
}