Versions Compared

Key

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

...

This method must return a new initialized transport handler. Typically, the constructor is called. When using Procedural Query Language (PQL) the options map is generated automatically from the option field (e.g.  PQL ACCESS Access operator)

Code Block
languagejava
titleExample of FileHandler
    @Override
    public ITransportHandler createInstance(
            IProtocolHandler<?> protocolHandler, Map<String, String> options) {
        return new FileHandler(protocolHandler, options);
    }

...