Packages

trait Https extends Object

HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a separate module.

Annotations
@JSType() @native()
See also

https://nodejs.org/api/https.html

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Https
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def createServer(): Server
  7. def createServer(options: ServerOptions): Server
  8. def createServer(requestListener: Function): Server
  9. def createServer(options: ServerOptions, requestListener: Function): Server

    Returns a new HTTPS web server object.

    Returns a new HTTPS web server object. The options is similar to tls.createServer(). The requestListener is a function which is automatically added to the 'request' event.

    Example:
    1. https.createServer(options[, requestListener])

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. def get(options: RequestOptions, callback: Function): ClientRequest
  14. def get(url: URL, callback: Function1[ServerResponse, Any]): ClientRequest
  15. def get(url: URL, options: RequestOptions, callback: Function1[ServerResponse, Any]): ClientRequest
  16. def get(url: String, callback: Function1[ServerResponse, Any]): ClientRequest
  17. def get(url: String, options: RequestOptions, callback: Function1[ServerResponse, Any]): ClientRequest
  18. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. def globalAgent: Agent

    Global instance of https.Agent for all HTTPS client requests.

  20. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  28. def request(options: RequestOptions, callback: Function1[ServerResponse, Any]): Unit
  29. def request(options: RequestOptions): Unit
  30. def request(url: URL): Unit
  31. def request(url: URL, callback: Function1[ServerResponse, Any]): Unit
  32. def request(url: URL, options: RequestOptions): Unit
  33. def request(url: URL, options: RequestOptions, callback: Function1[ServerResponse, Any]): Unit
  34. def request(url: String): Unit
  35. def request(url: String, callback: Function1[ServerResponse, Any]): Unit
  36. def request(url: String, options: RequestOptions): Unit
  37. def request(url: String, options: RequestOptions, callback: Function1[ServerResponse, Any]): Unit
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def toLocaleString(): String
    Definition Classes
    Object
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def valueOf(): Any
    Definition Classes
    Object
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped