开发者

Finding class source in android project (LinkedBlockingDeque)

开发者 https://www.devze.com 2023-04-02 16:11 出处:网络
I\'m looking for a class source added to the Android sdk in version 9. The class is LinkedBlockingDeque.

I'm looking for a class source added to the Android sdk in version 9. The class is LinkedBlockingDeque.

How do you go abo开发者_Python百科ut finding the source for a particular class?


You can use Java 1.6 implementation. Download it from here

Then change

implements BlockingDeque<E>

to

implements BlockingQueue<E>

To make it compile on Android. BlockingDeque is sub interface of BlockingQueue, so no harm done.


i don't think any of the above would help: first, some of the licenses mentioned are not totally open source - surely he would prefer apache license. second , about the android classes , i can't find this class there. it would probably be much better to get the code from there .

i think that for now , the best thing would be to implement it by yourself . even the naive solution of having a single lock could be enough , depending on your needs.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号