public SignFromHallOfFameLoader(Sign sign, String introduction, String fametype, int max, boolean ascending, boolean lineBreaks) {
this.sign = sign;
this.introduction = introduction;
this.handle = new ResultHandle();
this.lineBreaks = lineBreaks;
DBCommand command = new ReadCharactersFromHallOfFameCommand(fametype, max, ascending);
DBCommandQueue.get().enqueueAndAwaitResult(command, handle);
}