Sha256: 623f2e0122325e33478ef39e0e20c4c4a86631865b1ad01aa73e965c293aa4a2

Contents?: true

Size: 765 Bytes

Versions: 21

Compression:

Stored size: 765 Bytes

Contents

class AbstractConfigRuntimeFactory
  def clr(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

  def jvm(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

  def netcore(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

  def perl(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

  def ruby(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

  def nodejs(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

  def python(config_name = "default")
    raise NotImplementedError, "method not implemented"
  end

end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
javonet-ruby-sdk-2.4.2 lib/javonet-ruby-sdk/sdk/internal/abstract_config_runtime_factory.rb