hi all,
so I have a java method like this:
@RolesAllowed("PrepCI")
public CompletableFuture<RemoteOperStatus> reserveCI(CIDescriptor aCIDetails, @NonNull String aUserId, @NonNull String aUserName) {...}
vaadin translated it to
async function reserveCI_1(aCIDetails: CIDescriptor_1 | undefined, aUserId: string, aUserName: string, init?: EndpointRequestInit_1): Promise<unknown>
so I thought it has some support for it, but now that I tested it I think not
should I just await the future in the backend then? what other option do I have?
thanks
Fernando