- RabbitMQ Essentials
- David Dossot
- 210字
- 2021-07-16 11:56:38
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: "The first of these additions takes care of declaring the topic exchange in the existing onApplicationStart
method."
A block of code is set as follows:
rabbitMqManager.call(new ChannelCallable<DeclareOk>() { @Override public String getDescription() { return "Declaring topic exchange: " + USER_TOPICS_EXCHANGE; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
try
{
connection = factory.newConnection();
connection.addShutdownListener(this);
LOGGER.info("Connected to " + factory.getHost() + ":" + factory.getPort());
}
Any command-line input or output is written as follows:
$ sudo service rabbitmq-server restart
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 connected to the management console, click on the Exchanges tab."
- Learning Python Web Penetration Testing
- Building a RESTful Web Service with Spring
- Spring Boot+Spring Cloud+Vue+Element項目實戰:手把手教你開發權限管理系統
- Unity Virtual Reality Projects
- Java面向對象程序開發及實戰
- 精通API架構:設計、運維與演進
- Java深入解析:透析Java本質的36個話題
- C語言程序設計案例式教程
- Python貝葉斯分析(第2版)
- Python算法從菜鳥到達人
- HTML+CSS+JavaScript網頁設計從入門到精通 (清華社"視頻大講堂"大系·網絡開發視頻大講堂)
- Machine Learning With Go
- 小程序從0到1:微信全棧工程師一本通
- Python大規模機器學習
- Learning Image Processing with OpenCV