自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

悟已往之不谏,知来者之可追

让全世界知道我很低调

  • 博客(17)
  • 资源 (1)
  • 收藏
  • 关注

原创 Reactive Programming with RxJava-Chapter(9):Future Directions

Why a version2? Reactive Streams Observable and Flowable Performance

2017-03-29 10:03:54 325

原创 Reactive Programming with Rxjava-Chapter7:Testing and Troubleshooting(2)

Unit Testing Monitoring and Debugging doOn...() Callbacks Measuring and Monitoring

2017-03-29 09:39:38 278

原创 Reactive Programming with RxJava-Chapter7:Test and Troubleshooting(1)

Error Handling Where Are My Exceptions? Declarative try-catch Replacement Timing Out When Events Do Not Occur Retrying After Failures

2017-03-26 21:45:26 341

原创 Reactive Programming with RxJava-Chapter6:Flow Control and Backpressure(2)

Backpressure Backpressure in RxJava Built-in Backpressure Producers and Missing Backpressure Honoring the Requested Amount of Data

2017-03-22 09:50:41 366

原创 Reactive Programming with Rxjava-Chapter6:Flow Control and Backpressure(1)

Flow Control Taking Periodic Samples and Throttling Buffering Events to a List Moving window Skipping Stale Events by Using debounce()

2017-03-19 11:02:37 713

原创 Reactive Programming with RxJava-Chapter5:Reactive from Top to Bottom(2)

Relational Database Access CompletableFuture and Streams Observable versus Single

2017-03-16 20:37:25 313

原创 Reactive Programming with RxJava-Chapter5:Reactive from Top to Bottom(1)

Beating the C10k Problem Traditional Thread-Based HTTP Servers Nonblocking HTTP Server with Netty and RxNetty Reactive HTTP Servers Tour Nonblocking HTTP Client with RxNetty

2017-03-11 20:46:23 275

原创 Reactive Programming with RxJava-Chapter4:Applying Reactive Programming to Existing Application(2)

Replacing Callbacks with Streams Polling Periodically for Changes Multithreading in RxJava

2017-03-07 23:07:16 250

原创 Reactive Programming with RxJava-Chapter4:Applying Reactive Programming to Existing Application(1)

From Collections to Observables BlockingObservable:Exiting the Reactive World Embracing Laziness Composing Observables Imperative Concurrency flatMap() as Asynchronous Chaining Operator

2017-03-03 09:53:38 430

原创 Reactive Programming with RxJava-Chapter3:Operators and Transformations(3)

Slicing and Dicing Using skip(),takeWhile(),and Others. Writing Customer Operators

2017-02-28 17:33:09 616

原创 Reactive Programming with RxJava-Chapter3:Operators and Transformations(2)

merge(),zip(),zipWith(),combineLatest(),withLastFrom(),amb(),collect().reduce(),scan(),distinct()

2017-02-26 17:19:12 803

原创 Reactive Programming with RxJava-Chapter3:Operators and Transformations(1)

Core Operators:Mapping and Filtering In RxJava,you must forget about mutating data structures internally:modifying variables outside of stream is considered very nonidiomatic and dangerous 1、filte

2017-02-23 21:45:53 451

原创 Reactive Programming with RxJava-Chapter2:Reactive Extensions

Anatomy of rx.ObservableIndeed,Observablecan actually produce three types of events: Values of type T,as declared by Observable Completion event Error event Subscribing to Notifications from Observable

2017-02-22 13:12:58 393

原创 Reactive Programming with RxJava-Chapter1:Reactive Programming with RxJava

RxJava is a specific implement of reactive programming for Java and Android that is influenced by functional programming.

2017-02-21 13:21:15 396

原创 关于程序可伸缩性问题的讨论

可伸缩性指的是一个应用程序在工作负载和可用处理资源增加时其吞吐量的表现情况。一个可伸缩的程序能够通过使用更多的处理器、内存或者I/O带宽来相应地处理更大的工作负载。锁住某个共享的资源以获得独占式的访问这种做法会形成可伸缩性瓶颈——它使其他线程不能访问那个资源,即使有空闲的处理器可以调用那些线程也无济于事。为了取得可伸缩性,我们必须消除或者减少我们对独占式资源锁的依赖。

2015-07-20 13:33:19 2007

原创 Java 内存分配、对象生命周期与垃圾回收

虚拟器规范中的7个内存区域分别是三个线程私有的和四个线程共享的内存区,线程私有的内存区域与线程具有相同的生命周期,它们分别是: 指令计数器、 线程栈和本地线程栈,共享区是所有线程共享的,在JVM启动时就会分配,分别是:方法区、 常量池、直接内存区和堆。 Java的内存回收必须解决两问题:那些对象需要回收、怎么回收。 回收判定算法,当前的大部分虚拟机采用的判定策略为:根搜索算法 回收算法:分代回收

2015-06-28 11:10:50 852

原创 ThreadLocal原理及使用场合

ThreadLocal类在Spring,Hibernate等框架中起到了很大的作用,所以对它的原理分析是非常重要的。 ThreadLocal最适合的应用场合应该是按线程多实例(每个线程对应一个实例)的对象的访问。

2015-06-18 21:20:22 854

android考试系统 源码

两年多前个人与他人合作完成的Android应用作品,也是个人的处女作,主要参考的是驾校宝典这个应用,但内容是关于Android本身知识的考核。在360,91,安卓市场,乐商店等平台上上线发布过,至今仍可以被搜到。本已遗忘,但最近有人问我要源码,所以找出来了,现在看来,设计的功能的有些还没实现,代码中也有一些不完美的地方,但现在已无这个心境去完善了,拿出来,仅供大家参考。

2015-08-11

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除