Missing remote access with promises

Issue #79 wontfix
Nenad Vukicevic created an issue

rput/rget templates for calls that use promises are missing.

int main() {
  init();
  global_ptr<int> gptr = new_<int>();
  promise<> p;
  rput(1, gptr, p);
  rget(gptr, p);
  finalize();
}

Comments (1)

  1. Dan Bonachea

    This is intentional.

    These interfaces are not supported in the current release because they are being replaced with a new interface next release.

  2. Log in to comment