Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
public class myactor extends TypedAtomicActor implements CodeParametersInterface { ... }
 
// later in the code we will be able to do
 
myactor actor = new myactor();
 
if(actor instanceof CodeParametersInterface) {
  // we can query for CodeParamaters, do validation, etc.
} else {
  // we can generate warning that actor doesn't support
  // CodeParameters validation
}

We have to provide support for New Low Level

Wrapper codes have to be updated such way they can handle both: old and new low level.