Uploaded image for project: 'Java Driver'
  1. Java Driver
  2. JAVA-4314

Observable head should take implicit ExecutionContext passed by consumer

    • Type: Icon: Improvement Improvement
    • Resolution: Works as Designed
    • Priority: Icon: Unknown Unknown
    • None
    • Affects Version/s: None
    • Component/s: Scala

      Right now, Observable head hard codes an ExecutionContext. It would be preferable if library consumers could pass in an ExecutionContext of their choosing:

        def head()(implicit ec: ExecutionContext): Future[T] = {
          headOption().map {
            case Some(result) => result
            case None         => null.asInstanceOf[T] // scalastyle:ignore null
          }
        }
      

            Assignee:
            ross@mongodb.com Ross Lawley
            Reporter:
            scott.rice@rallyhealth.com Scott Rice
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: