com.socrata.soda2.consumer.http

LowLevelHttp

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
Learn more about member selection
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)

  2. new LowLevelHttp(client: AsyncHttpClient, logicalHost: String, physicalHost: String, port: Int, secure: Boolean, authorization: Authorization, requestId: Option[String])(implicit executionContext: ExecutionContext, timer: ExecutionContextTimer)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. val authorization: Authorization

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

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

  10. val client: AsyncHttpClient

  11. def clone(): AnyRef

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

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

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

  15. def finalize(): Unit

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

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

    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
  18. def get[T](resource: Resource, parameters: Map[String, String], iteratee: (URI, Soda2Metadata) ⇒ CharIteratee[T])(implicit stupidErasure: QueryDisambiguator): Future[T]

    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
  19. final def getClass(): Class[_]

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

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

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

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

    Definition Classes
    LowLevelHttpLowLevel
  24. val logicalHost: String

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

  26. 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]

  27. 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]

  28. 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]

  29. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  32. val physicalHost: String

  33. val port: Int

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

  35. 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]

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

    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
  37. 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]

  38. def protocol: String

  39. 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]

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

    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
  41. val requestId: Option[String]

  42. val secure: Boolean

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

    Definition Classes
    AnyRef
  44. def toString(): String

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

  46. def uriForResource(resource: Resource): URI

  47. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LowLevel

Inherited from AnyRef

Inherited from Any

Ungrouped