You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Only a single IN, OUT or INOUT clause can be provided to an async.

// Compile time error (two IN clauses specified)async IN(a) IN(b) OUT(x) { code }
// Legal code: a single IN clause, that takes a list several argumentsasync IN(a,b) OUT(x) { code }
  • No labels