Ihar Hancharenka ef4c396064 m
2025-04-10 13:03:37 +03:00

17 строки
436 B
Plaintext

sample
public static class SomeResponseSupplier {
private final Supplier<SomeResponse> supplier;
private TxCardResponse data;
public SomeResponseSupplier(Supplier<SomeResponse> supplier) {
this.supplier = supplier;
}
public SomeResponse get() {
if (data != null) {
return data;
}
return data = supplier.get();
}
}