How can I construct a SortedMap on top of Guava's computing map (or vice versa)? I want the sorted map keys as well as computing values on-the-fly.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The simplest is probably to use a ConcurrentSkipListMap and the memoizer idiom (see JCiP), rather than relying on the pre-built unsorted types from MapMaker. An example that you could use as a basis is a decorator implementation. |
|||
|
May be you can do something like this.It's not a complete implementation.Just a sample to convey the idea.
|
|||
|
|
|
If you need the thread safety, this could be tricky, but if you don't I'd recommend something close to Emil's suggestion, but using a |
|||
|
|