- WebRTC Cookbook
- Andrii Sergiienko
- 224字
- 2021-07-23 20:27:06
Conventions
In this book, you will find a number of styles of text 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: "We can include our custom JavaScript library located in the mylib.js
file."
A block of code is set as follows:
-module(sigserver_app). -behaviour(application). -export([start/2, stop/1, start/0]). start() -> ok = application:start(ranch), ok = application:start(crypto), ok = application:start(cowlib), ok = application:start(cowboy),
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
private static Map<Integer,Set<WebSocket>> Rooms = new HashMap<>();
private int myroom;
public Main() {
super(new InetSocketAddress(30001));
}
Any command-line input or output is written as follows:
rebar create-app appid=sigserver
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "When the customer enters a message and clicks on the Submit query button, we will wrap the message into a JSON object and send it via the data channel."
- 現(xiàn)代C++編程:從入門到實(shí)踐
- Embedded Linux Projects Using Yocto Project Cookbook
- Mastering SVG
- Mastering Natural Language Processing with Python
- jQuery EasyUI網(wǎng)站開發(fā)實(shí)戰(zhàn)
- Learning Informatica PowerCenter 10.x(Second Edition)
- Visual Basic程序設(shè)計(jì)習(xí)題解答與上機(jī)指導(dǎo)
- Windows Server 2012 Unified Remote Access Planning and Deployment
- MySQL數(shù)據(jù)庫基礎(chǔ)實(shí)例教程(微課版)
- Jenkins Continuous Integration Cookbook(Second Edition)
- Python語言實(shí)用教程
- 詳解MATLAB圖形繪制技術(shù)
- Unity 5.X從入門到精通
- Docker:容器與容器云(第2版)
- Elasticsearch Blueprints