- Reactive Programming in Kotlin
- Rivu Chakraborty
- 244字
- 2021-07-02 22:26:34
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Let's first take a look at the init block of the ReactiveCalculator class"
A block of code is set as follows:
async(CommonPool) { Observable.range(1, 10) .subscribeOn(Schedulers.trampoline())//(1) .subscribe { runBlocking { delay(200) } println("Observable1 Item Received $it") }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
abstract class BaseActivity : AppCompatActivity() { final override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) onCreateBaseActivity(savedInstanceState) } abstract fun onCreateBaseActivity(savedInstanceState: Bundle?) }
Any command-line input or output is written as follows. The input command might be broken into several lines to aid readability, but needs to be entered as one continuous line in the prompt:
$ git clone https://github.com/ReactiveX/RxKotlin.git $ cd RxKotlin/ $ ./gradlew build
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Go to Android Studio | Settings | Plugins."
Warnings or important notes appear like this.
Tips and tricks appear like this.
- 數據庫原理及應用教程(第4版)(微課版)
- Mastering Ninject for Dependency Injection
- 工業大數據分析算法實戰
- 大數據導論
- Neural Network Programming with TensorFlow
- 數據要素五論:信息、權屬、價值、安全、交易
- INSTANT Cytoscape Complex Network Analysis How-to
- 數據革命:大數據價值實現方法、技術與案例
- MySQL 8.x從入門到精通(視頻教學版)
- 數據挖掘原理與SPSS Clementine應用寶典
- 深入淺出 Hyperscan:高性能正則表達式算法原理與設計
- 企業級容器云架構開發指南
- INSTANT Apple iBooks How-to
- 達夢數據庫運維實戰
- Scratch 2.0 Game Development HOTSHOT