Closed
Description
If this has been already discussed I am sorry for bringing it up again.
A DNS change request is now mapped using a single non-functional class ChangeRequest
. I see a benefit in having a functional class for change requests as well. It would be cool to be able to write:
ChangeRequest change = dns.applyChangeRequest(ChangeRequestInfo.builder...);
while (!change. isDone()) {
Thread.sleep (1000L);
}
// change request is DONE
In the same way we do for bigquery's jobs and as I plan to do with compute's operations. What do you think?