Git Product home page Git Product logo

Comments (3)

moderakh avatar moderakh commented on August 29, 2024

from azure-cosmosdb-java.

sgireddy avatar sgireddy commented on August 29, 2024

This issue is specific to Scala. The crux of the problem is with the following import statement:

 import com.microsoft.azure.documentdb._

Scala uses relative package naming which means above statement automatically imports the package rx from com.microsoft.azure.documentdb. This means it hides all packages within the real package "rx" from RxJava. You might argue that "isn't it a bad idea to to import everything from documentdb or even documentdb.rx", I would say "Yes, it is" but when we work on POCs we don't know many classes within the relatively new API so for the sake of convenience we import everything then clean up later. Also given the number of classes defined within azure.documentdb tools like IntelliJ automatically translate to ._ after seeing use of certain number of classes, so use of ._ is pretty common.

root is the construct that forces to use absolute package naming. So I had to use it this way in order to overcome the problem.

Here are some more details: https://www.scala-lang.org/old/faq/3.html

Given "rx" is the centerpiece of this library, I would recommend renaming com.microsoft.azure.documentdb.rx to something else, saving time for many naive programmers like me.

Update: I was able fix this by taking advantage of the import order by importing rx._ first. But I think this is going to be a nagging issue for many developers.

import rx._
import rx.functions._
import com.microsoft.azure.documentdb._

instead of

import com.microsoft.azure.documentdb._
import _root_.rx._

from azure-cosmosdb-java.

moderakh avatar moderakh commented on August 29, 2024

@sgireddy
I haven't done much scala programming myself so your comments on your experience when using this in Scala is helpful.

Two questions for you:

  1. Please see mongo's rx driver classes, e.g, com.mongodb.rx.client.MapReduceObservable
    http://mongodb.github.io/mongo-java-driver-rx/1.1/javadoc/com/mongodb/rx/client/MapReduceObservable.html

Does mongo's rx driver have the same problem on Scala?

  1. our rx driver is already used in a scala package:
    https://github.com/Azure/azure-cosmosdb-spark/blob/master/src/main/scala/com/microsoft/azure/cosmosdb/spark/CosmosDBSpark.scala#L30-L31

Can you follow the pattern used in the above link? do you see any problem with this approach?

Thanks

from azure-cosmosdb-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.