Class/Object

com.socrata.soda2.consumer.http

LowLevelHttp

Related Docs: object LowLevelHttp | package http

Permalink

class LowLevelHttp extends LowLevel

Linear Supertypes
LowLevel, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LowLevelHttp
  2. LowLevel
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LowLevelHttp(client: AsyncHttpClient, logicalHost: String, physicalHost: String, port: Int, secure: Boolean, authorization: Authorization)(implicit executionContext: ExecutionContext, timer: ExecutionContextTimer)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val authorization: Authorization

    Permalink
  6. def awaitNoPendingGeocodesFor(resource: Resource, progressCallback: (JObject) ⇒ Unit): Future[Unit]

    Permalink
  7. def bodyConsumer[T](headers: Headers, codec: Codec, iteratee: (Soda2Metadata) ⇒ CharIteratee[T]): ResultProducer[T]

    Permalink
  8. val client: AsyncHttpClient

    Permalink
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def extractParametersFrom(uri: URI): Map[String, List[String]]

    Permalink
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def get[T](uri: URI, originalResource: Resource, queryParameters: Option[Map[String, Seq[String]]], progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
  15. def get[T](resource: Resource, getParameters: Map[String, Seq[String]], iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink

    Executes a GET query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    Executes a GET query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    resource

    The resource to retrieve.

    iteratee

    A handler for the response.

    Definition Classes
    LowLevelHttpLowLevel
  16. def get[T](resource: Resource, parameters: Map[String, String], iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T])(implicit stupidErasure: QueryDisambiguator): Future[T]

    Permalink

    Executes a GET query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    Executes a GET query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    resource

    The resource to retrieve.

    parameters

    The values to feed into query.

    iteratee

    A handler for the response.

    Definition Classes
    LowLevel
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def legacyMakeWorkingCopy[T](resource: Resource, copyRows: Boolean, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
    Definition Classes
    LowLevelHttpLowLevel
  21. def legacyPublish[T](resource: Resource, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
    Definition Classes
    LowLevelHttpLowLevel
  22. val logicalHost: String

    Permalink
  23. def maybeRetry[T](x: Retryable[T], progressCallback: (JObject) ⇒ Unit)(onRetry: (NewRequest) ⇒ Future[T]): Future[T]

    Permalink
  24. def maybeRetryForm[T](uri: URI, originalResource: Resource, formParameters: Option[Map[String, Seq[String]]], progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T], x: Retryable[T]): Future[T]

    Permalink
  25. def maybeRetryGet[T](uri: URI, originalResource: Resource, getParameters: Option[Map[String, Seq[String]]], progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T], x: Retryable[T]): Future[T]

    Permalink
  26. def maybeRetryJson[T](isPost: Boolean, uri: URI, originalResource: Resource, queryParameters: Option[Map[String, Seq[String]]], body: JValue, progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T], x: Retryable[T]): Future[T]

    Permalink
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. val physicalHost: String

    Permalink
  31. val port: Int

    Permalink
  32. def postForm[T](uri: URI, originalResource: Resource, formParameters: Option[Map[String, Seq[String]]], progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
  33. def postJson[T](uri: URI, originalResource: Resource, queryParameters: Option[Map[String, Seq[String]]], body: JValue, progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
  34. def postJson[T](resource: Resource, body: JValue, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink

    Executes a POST query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    Executes a POST query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    resource

    The resource to which to send the JSON.

    iteratee

    A handler for the response.

    Definition Classes
    LowLevelHttpLowLevel
  35. def postPutJson[T](builder: BoundRequestBuilder, isPost: Boolean, uri: URI, originalResource: Resource, queryParameters: Option[Map[String, Seq[String]]], body: JValue, progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
  36. def protocol: String

    Permalink
  37. def putJson[T](uri: URI, originalResource: Resource, queryParameters: Option[Map[String, Seq[String]]], body: JValue, progressCallback: (JObject) ⇒ Unit, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink
  38. def putJson[T](resource: Resource, body: JValue, iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T]): Future[T]

    Permalink

    Executes a PUT query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    Executes a PUT query against a SODA2 server and feeds the character data returned into the given com.socrata.iteratee.Iteratee.

    resource

    The resource to which to send the JSON.

    iteratee

    A handler for the response.

    Definition Classes
    LowLevelHttpLowLevel
  39. val secure: Boolean

    Permalink
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. def uriForPath(path: String): URI

    Permalink
  43. def uriForResource(resource: Resource): URI

    Permalink
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LowLevel

Inherited from AnyRef

Inherited from Any

Ungrouped