13141516171819
super(answer); this.answer = answer; } public void execute() throws IOException { new HttpExecutor(answer).executeSingle(); }
14151617181920
super(answer); this.answer = answer; } public <T> T execute() throws IOException { return new HttpExecutor(answer).executeSingle(); }
17181920212223
public EasyHttpSyncMultiExecutor(EasyHttpSyncBuilderAnswer answer) { this.answer = answer; } public List<RequestAnswer<?>> execute() throws IOException { return new HttpExecutor(answer).executeMulti(); }