mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2026-09-01 22:00:23 +00:00
* performance optimization through multithreading * added duration for the proposed calls
26 lines
609 B
Java
26 lines
609 B
Java
package jota.dto.response;
|
|
|
|
/**
|
|
* Created by pinpong on 01.01.17.
|
|
*/
|
|
public class ReplayBundleResponse extends AbstractResponse {
|
|
|
|
private Boolean[] successfully;
|
|
|
|
public static ReplayBundleResponse create(Boolean[] successfully, long duration) {
|
|
ReplayBundleResponse res = new ReplayBundleResponse();
|
|
res.successfully = successfully;
|
|
res.setDuration(duration);
|
|
return res;
|
|
}
|
|
|
|
public Boolean[] getSuccessfully() {
|
|
return successfully;
|
|
}
|
|
|
|
public void setSuccessfully(Boolean[] successfully) {
|
|
this.successfully = successfully;
|
|
}
|
|
|
|
}
|