Using Raw Agent Methods
CompletableFuture<byte[]> response = agent
.queryRaw(Principal.fromString(canisterId),
Principal.fromString(effectiveCanisterId),
"echoInt",
payload,
ingressExpiryDatetime);CompletableFuture<byte[]> response = agent
.updateRaw(Principal.fromString(canisterId),
Principal.fromString(effectiveCanisterId),
"greetjav",
payload,
ingressExpiryDatetime);Status status = agent.status().get();Last updated