##Welcome to jBloomberg
jBloomberg is a high-level API that wraps the low level Bloomberg Desktop Java API. Although most features of the underlying Bloomberg API are available, some options might not be reachable through the jBloomberg API.
You can browse the javadoc for more information, including example usages.
###Description
The main advantages of this library vs. the Bloomberg API are:
- Less string based configuration: whenever possible enums are used to remove the typos issues
- Less verbose: retrieving historical data literally takes 5 lines of code, whereas when using the Bloomberg API, the code gets quickly cluttered with parsing, error handling and so on
- Fluent design: most queries to Bloomberg are prepared with builders using the fluent interface pattern
- The library takes thread safety seriously (so does the Bloomberg API): all actions / objects are thread safe and can be used in a multi threaded application (unless indicated otherwise, for example the builders)
- Uses the standard java.util.concurrent package objects, so the syntax / way of doing things should look familiar
to Java developers. For example, a historical data request returns a
Future<HistoricalData>
It should however be noted that using jBloomberg does increase memory consumption and GC although for most applications that should not be noticeable.
###Stability
Note that the API is not stable yet and its design could be subject to changes in the future.
###License
Apache License v2.0
###Dependencies
####Source dependencies
- guava (Apache License v2.0)
- jodatime (Apache License v2.0)
- slf4j (MIT License)
- Bloomberg BLPAPI (tested with 3.5.1.1) (MIT License)
####Test dependencies
- jmockit (MIT License)
- testNG (Apache License v2.0)