├── .gitignore ├── PLAN.md ├── README.md ├── SUMMARY.md ├── advanced ├── Advanced.md ├── BridgeCommon.md ├── Codegen.md ├── Codetrans.md ├── Distro.md ├── Docgen.md └── WebSite.md ├── auth ├── .htdigestAuth.md ├── Auth.md ├── AuthCommon.md ├── JDBCAuth.md ├── JWTAuth.md ├── MongoDBAuth.md ├── Oauth2.md └── ShiroAuth.md ├── book.json ├── cloud ├── Cloud.md ├── OpenShift2DIYCartridge.md ├── OpenShiftCartridge.md └── OpenShiftUsingDIYCartridge.md ├── clustering ├── ApacheIgnite.md ├── ApacheZookeeper.md ├── Clustering.md ├── Hazelcast.md ├── Infinispan.md └── JGroups.md ├── core └── Core.md ├── data ├── Data.md ├── JDBCClient.md ├── MongoDBClient.md ├── MySQL&PostgreSQLClient.md ├── RedisClient.md └── SQLCommon.md ├── devops ├── Devops.md ├── Docker.md ├── HealthCheck.md ├── MetricsUsingDropwizard.md ├── MetricsUsingHawkular.md ├── Shell.md └── StackManager.md ├── docs ├── .gitignore ├── PLAN.html ├── advanced │ ├── Advanced.md │ ├── BridgeCommon.md │ ├── Codegen.md │ ├── Codetrans.md │ ├── Distro.md │ ├── Docgen.md │ └── WebSite.md ├── auth │ ├── .htdigestAuth.md │ ├── Auth.html │ ├── AuthCommon.html │ ├── JDBCAuth.html │ ├── JWTAuth.html │ ├── MongoDBAuth.html │ ├── Oauth2.html │ └── ShiroAuth.html ├── cloud │ ├── Cloud.html │ ├── OpenShift2DIYCartridge.md │ ├── OpenShiftCartridge.html │ └── OpenShiftUsingDIYCartridge.html ├── clustering │ ├── ApacheIgnite.html │ ├── ApacheZookeeper.html │ ├── Clustering.html │ ├── Hazelcast.html │ ├── Infinispan.html │ └── JGroups.md ├── core │ └── Core.html ├── data │ ├── Data.html │ ├── JDBCClient.html │ ├── MongoDBClient.html │ ├── MySQL&PostgreSQLClient.html │ ├── RedisClient.html │ └── SQLCommon.html ├── devops │ ├── Devops.html │ ├── Docker.html │ ├── HealthCheck.md │ ├── MetricsUsingDropwizard.html │ ├── MetricsUsingHawkular.html │ ├── Shell.html │ └── StackManager.html ├── eventbusbridge │ ├── CamelBridge.html │ └── TCPEventbusBridge.html ├── gitbook │ ├── fonts │ │ └── fontawesome │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── gitbook-plugin-fontsettings │ │ ├── fontsettings.js │ │ └── website.css │ ├── gitbook-plugin-highlight │ │ ├── ebook.css │ │ └── website.css │ ├── gitbook-plugin-lunr │ │ ├── lunr.min.js │ │ └── search-lunr.js │ ├── gitbook-plugin-search │ │ ├── lunr.min.js │ │ ├── search-engine.js │ │ ├── search.css │ │ └── search.js │ ├── gitbook-plugin-sharing │ │ └── buttons.js │ ├── gitbook.js │ ├── images │ │ ├── apple-touch-icon-precomposed-152.png │ │ └── favicon.ico │ ├── style.css │ └── theme.js ├── index.html ├── integration │ ├── AMQPBridge.md │ ├── ConsulClient.html │ ├── Integration.html │ ├── JCAAdaptor.html │ ├── KafkaClient.html │ ├── MailClient.html │ ├── RabbitMQClient.html │ └── STOMPClient&Server.html ├── iot │ └── MQTTServer.html ├── microservices │ ├── CircuitBreaker.html │ ├── Config.html │ └── ServiceDiscovery.html ├── reactive │ ├── Reactive.html │ ├── Reactivestreams.html │ ├── Rx.html │ └── Sync.html ├── search_index.json ├── services │ ├── HTTPServiceFactory.html │ ├── MavenServiceFactory.html │ ├── ServiceFactories.html │ ├── ServiceProxies.html │ ├── Services.html │ ├── SockJSServiceProxies.html │ └── gRPC.md ├── start │ ├── FAQ.html │ ├── SimpleStart.html │ ├── Start.html │ └── Start │ │ └── comments-for-reader.md ├── testing │ └── Testing.html ├── web │ └── Web.html └── webclient │ └── WebClient.html ├── eventbusbridge ├── CamelBridge.md └── TCPEventbusBridge.md ├── integration ├── AMQPBridge.md ├── ConsulClient.md ├── Integration.md ├── JCAAdaptor.md ├── KafkaClient.md ├── MailClient.md ├── RabbitMQClient.md └── STOMPClient&Server.md ├── iot └── MQTTServer.md ├── microservices ├── CircuitBreaker.md ├── Config.md └── ServiceDiscovery.md ├── reactive ├── Reactive.md ├── Reactivestreams.md ├── Rx.md └── Sync.md ├── services ├── HTTPServiceFactory.md ├── MavenServiceFactory.md ├── ServiceFactories.md ├── ServiceProxies.md ├── Services.md ├── SockJSServiceProxies.md └── gRPC.md ├── start ├── FAQ.md ├── SimpleStart.md ├── Start.md └── Start │ └── comments-for-reader.md ├── testing └── Testing.md ├── web └── Web.md └── webclient └── WebClient.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/.gitignore -------------------------------------------------------------------------------- /PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/PLAN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /advanced/Advanced.md: -------------------------------------------------------------------------------- 1 | # Vert.x Advanced 2 | -------------------------------------------------------------------------------- /advanced/BridgeCommon.md: -------------------------------------------------------------------------------- 1 | # Vert.x Bridge Common 2 | -------------------------------------------------------------------------------- /advanced/Codegen.md: -------------------------------------------------------------------------------- 1 | # Vert.x Codegen 2 | -------------------------------------------------------------------------------- /advanced/Codetrans.md: -------------------------------------------------------------------------------- 1 | # Vert.x Codetrans 2 | -------------------------------------------------------------------------------- /advanced/Distro.md: -------------------------------------------------------------------------------- 1 | # Vert.x Distro 2 | -------------------------------------------------------------------------------- /advanced/Docgen.md: -------------------------------------------------------------------------------- 1 | # Vert.x Docgen 2 | -------------------------------------------------------------------------------- /advanced/WebSite.md: -------------------------------------------------------------------------------- 1 | # Vert.x Web-site 2 | -------------------------------------------------------------------------------- /auth/.htdigestAuth.md: -------------------------------------------------------------------------------- 1 | # Vert.x .htdigest Auth -------------------------------------------------------------------------------- /auth/Auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/Auth.md -------------------------------------------------------------------------------- /auth/AuthCommon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/AuthCommon.md -------------------------------------------------------------------------------- /auth/JDBCAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/JDBCAuth.md -------------------------------------------------------------------------------- /auth/JWTAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/JWTAuth.md -------------------------------------------------------------------------------- /auth/MongoDBAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/MongoDBAuth.md -------------------------------------------------------------------------------- /auth/Oauth2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/Oauth2.md -------------------------------------------------------------------------------- /auth/ShiroAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/auth/ShiroAuth.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/book.json -------------------------------------------------------------------------------- /cloud/Cloud.md: -------------------------------------------------------------------------------- 1 | # Vert.x Cloud 2 | -------------------------------------------------------------------------------- /cloud/OpenShift2DIYCartridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x OpenShift 2 - DIY Cartridge 2 | -------------------------------------------------------------------------------- /cloud/OpenShiftCartridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x OpenShift Cartridge 2 | -------------------------------------------------------------------------------- /cloud/OpenShiftUsingDIYCartridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x OpenShift Using DIY Cartridge 2 | -------------------------------------------------------------------------------- /clustering/ApacheIgnite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/clustering/ApacheIgnite.md -------------------------------------------------------------------------------- /clustering/ApacheZookeeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/clustering/ApacheZookeeper.md -------------------------------------------------------------------------------- /clustering/Clustering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/clustering/Clustering.md -------------------------------------------------------------------------------- /clustering/Hazelcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/clustering/Hazelcast.md -------------------------------------------------------------------------------- /clustering/Infinispan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/clustering/Infinispan.md -------------------------------------------------------------------------------- /clustering/JGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/clustering/JGroups.md -------------------------------------------------------------------------------- /core/Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/core/Core.md -------------------------------------------------------------------------------- /data/Data.md: -------------------------------------------------------------------------------- 1 | # Vert.x Data Access 2 | -------------------------------------------------------------------------------- /data/JDBCClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/data/JDBCClient.md -------------------------------------------------------------------------------- /data/MongoDBClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/data/MongoDBClient.md -------------------------------------------------------------------------------- /data/MySQL&PostgreSQLClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/data/MySQL&PostgreSQLClient.md -------------------------------------------------------------------------------- /data/RedisClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/data/RedisClient.md -------------------------------------------------------------------------------- /data/SQLCommon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/data/SQLCommon.md -------------------------------------------------------------------------------- /devops/Devops.md: -------------------------------------------------------------------------------- 1 | # Vert.x Devops 2 | -------------------------------------------------------------------------------- /devops/Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/devops/Docker.md -------------------------------------------------------------------------------- /devops/HealthCheck.md: -------------------------------------------------------------------------------- 1 | # Vert.x Health Check 2 | -------------------------------------------------------------------------------- /devops/MetricsUsingDropwizard.md: -------------------------------------------------------------------------------- 1 | # Vert.x Metrics Using Dropwizard 2 | -------------------------------------------------------------------------------- /devops/MetricsUsingHawkular.md: -------------------------------------------------------------------------------- 1 | # Vert.x Metrics Using Hawkular 2 | -------------------------------------------------------------------------------- /devops/Shell.md: -------------------------------------------------------------------------------- 1 | # Vert.x Shell 2 | -------------------------------------------------------------------------------- /devops/StackManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/devops/StackManager.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/PLAN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/PLAN.html -------------------------------------------------------------------------------- /docs/advanced/Advanced.md: -------------------------------------------------------------------------------- 1 | # Vert.x Advanced 2 | -------------------------------------------------------------------------------- /docs/advanced/BridgeCommon.md: -------------------------------------------------------------------------------- 1 | # Vert.x Bridge Common 2 | -------------------------------------------------------------------------------- /docs/advanced/Codegen.md: -------------------------------------------------------------------------------- 1 | # Vert.x Codegen 2 | -------------------------------------------------------------------------------- /docs/advanced/Codetrans.md: -------------------------------------------------------------------------------- 1 | # Vert.x Codetrans 2 | -------------------------------------------------------------------------------- /docs/advanced/Distro.md: -------------------------------------------------------------------------------- 1 | # Vert.x Distro 2 | -------------------------------------------------------------------------------- /docs/advanced/Docgen.md: -------------------------------------------------------------------------------- 1 | # Vert.x Docgen 2 | -------------------------------------------------------------------------------- /docs/advanced/WebSite.md: -------------------------------------------------------------------------------- 1 | # Vert.x Web-site 2 | -------------------------------------------------------------------------------- /docs/auth/.htdigestAuth.md: -------------------------------------------------------------------------------- 1 | # Vert.x .htdigest Auth -------------------------------------------------------------------------------- /docs/auth/Auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/Auth.html -------------------------------------------------------------------------------- /docs/auth/AuthCommon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/AuthCommon.html -------------------------------------------------------------------------------- /docs/auth/JDBCAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/JDBCAuth.html -------------------------------------------------------------------------------- /docs/auth/JWTAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/JWTAuth.html -------------------------------------------------------------------------------- /docs/auth/MongoDBAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/MongoDBAuth.html -------------------------------------------------------------------------------- /docs/auth/Oauth2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/Oauth2.html -------------------------------------------------------------------------------- /docs/auth/ShiroAuth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/auth/ShiroAuth.html -------------------------------------------------------------------------------- /docs/cloud/Cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/cloud/Cloud.html -------------------------------------------------------------------------------- /docs/cloud/OpenShift2DIYCartridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x OpenShift 2 - DIY Cartridge 2 | -------------------------------------------------------------------------------- /docs/cloud/OpenShiftCartridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/cloud/OpenShiftCartridge.html -------------------------------------------------------------------------------- /docs/cloud/OpenShiftUsingDIYCartridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/cloud/OpenShiftUsingDIYCartridge.html -------------------------------------------------------------------------------- /docs/clustering/ApacheIgnite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/clustering/ApacheIgnite.html -------------------------------------------------------------------------------- /docs/clustering/ApacheZookeeper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/clustering/ApacheZookeeper.html -------------------------------------------------------------------------------- /docs/clustering/Clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/clustering/Clustering.html -------------------------------------------------------------------------------- /docs/clustering/Hazelcast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/clustering/Hazelcast.html -------------------------------------------------------------------------------- /docs/clustering/Infinispan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/clustering/Infinispan.html -------------------------------------------------------------------------------- /docs/clustering/JGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/clustering/JGroups.md -------------------------------------------------------------------------------- /docs/core/Core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/core/Core.html -------------------------------------------------------------------------------- /docs/data/Data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/data/Data.html -------------------------------------------------------------------------------- /docs/data/JDBCClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/data/JDBCClient.html -------------------------------------------------------------------------------- /docs/data/MongoDBClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/data/MongoDBClient.html -------------------------------------------------------------------------------- /docs/data/MySQL&PostgreSQLClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/data/MySQL&PostgreSQLClient.html -------------------------------------------------------------------------------- /docs/data/RedisClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/data/RedisClient.html -------------------------------------------------------------------------------- /docs/data/SQLCommon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/data/SQLCommon.html -------------------------------------------------------------------------------- /docs/devops/Devops.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/devops/Devops.html -------------------------------------------------------------------------------- /docs/devops/Docker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/devops/Docker.html -------------------------------------------------------------------------------- /docs/devops/HealthCheck.md: -------------------------------------------------------------------------------- 1 | # Vert.x Health Check 2 | -------------------------------------------------------------------------------- /docs/devops/MetricsUsingDropwizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/devops/MetricsUsingDropwizard.html -------------------------------------------------------------------------------- /docs/devops/MetricsUsingHawkular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/devops/MetricsUsingHawkular.html -------------------------------------------------------------------------------- /docs/devops/Shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/devops/Shell.html -------------------------------------------------------------------------------- /docs/devops/StackManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/devops/StackManager.html -------------------------------------------------------------------------------- /docs/eventbusbridge/CamelBridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/eventbusbridge/CamelBridge.html -------------------------------------------------------------------------------- /docs/eventbusbridge/TCPEventbusBridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/eventbusbridge/TCPEventbusBridge.html -------------------------------------------------------------------------------- /docs/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/gitbook/fonts/fontawesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/fonts/fontawesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-fontsettings/fontsettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-fontsettings/fontsettings.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-fontsettings/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-fontsettings/website.css -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-highlight/ebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-highlight/ebook.css -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-highlight/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-highlight/website.css -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-lunr/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-lunr/lunr.min.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-lunr/search-lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-lunr/search-lunr.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-search/lunr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-search/lunr.min.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-search/search-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-search/search-engine.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-search/search.css -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-search/search.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook-plugin-sharing/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook-plugin-sharing/buttons.js -------------------------------------------------------------------------------- /docs/gitbook/gitbook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/gitbook.js -------------------------------------------------------------------------------- /docs/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /docs/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /docs/gitbook/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/style.css -------------------------------------------------------------------------------- /docs/gitbook/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/gitbook/theme.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/integration/AMQPBridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x AMQP Bridge 2 | -------------------------------------------------------------------------------- /docs/integration/ConsulClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/ConsulClient.html -------------------------------------------------------------------------------- /docs/integration/Integration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/Integration.html -------------------------------------------------------------------------------- /docs/integration/JCAAdaptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/JCAAdaptor.html -------------------------------------------------------------------------------- /docs/integration/KafkaClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/KafkaClient.html -------------------------------------------------------------------------------- /docs/integration/MailClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/MailClient.html -------------------------------------------------------------------------------- /docs/integration/RabbitMQClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/RabbitMQClient.html -------------------------------------------------------------------------------- /docs/integration/STOMPClient&Server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/integration/STOMPClient&Server.html -------------------------------------------------------------------------------- /docs/iot/MQTTServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/iot/MQTTServer.html -------------------------------------------------------------------------------- /docs/microservices/CircuitBreaker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/microservices/CircuitBreaker.html -------------------------------------------------------------------------------- /docs/microservices/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/microservices/Config.html -------------------------------------------------------------------------------- /docs/microservices/ServiceDiscovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/microservices/ServiceDiscovery.html -------------------------------------------------------------------------------- /docs/reactive/Reactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/reactive/Reactive.html -------------------------------------------------------------------------------- /docs/reactive/Reactivestreams.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/reactive/Reactivestreams.html -------------------------------------------------------------------------------- /docs/reactive/Rx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/reactive/Rx.html -------------------------------------------------------------------------------- /docs/reactive/Sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/reactive/Sync.html -------------------------------------------------------------------------------- /docs/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/search_index.json -------------------------------------------------------------------------------- /docs/services/HTTPServiceFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/services/HTTPServiceFactory.html -------------------------------------------------------------------------------- /docs/services/MavenServiceFactory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/services/MavenServiceFactory.html -------------------------------------------------------------------------------- /docs/services/ServiceFactories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/services/ServiceFactories.html -------------------------------------------------------------------------------- /docs/services/ServiceProxies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/services/ServiceProxies.html -------------------------------------------------------------------------------- /docs/services/Services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/services/Services.html -------------------------------------------------------------------------------- /docs/services/SockJSServiceProxies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/services/SockJSServiceProxies.html -------------------------------------------------------------------------------- /docs/services/gRPC.md: -------------------------------------------------------------------------------- 1 | # Vert.x gRPC 2 | -------------------------------------------------------------------------------- /docs/start/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/start/FAQ.html -------------------------------------------------------------------------------- /docs/start/SimpleStart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/start/SimpleStart.html -------------------------------------------------------------------------------- /docs/start/Start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/start/Start.html -------------------------------------------------------------------------------- /docs/start/Start/comments-for-reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/start/Start/comments-for-reader.md -------------------------------------------------------------------------------- /docs/testing/Testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/testing/Testing.html -------------------------------------------------------------------------------- /docs/web/Web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/web/Web.html -------------------------------------------------------------------------------- /docs/webclient/WebClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/docs/webclient/WebClient.html -------------------------------------------------------------------------------- /eventbusbridge/CamelBridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x Camel Bridge -------------------------------------------------------------------------------- /eventbusbridge/TCPEventbusBridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x TCP Eventbus Bridge 2 | -------------------------------------------------------------------------------- /integration/AMQPBridge.md: -------------------------------------------------------------------------------- 1 | # Vert.x AMQP Bridge 2 | -------------------------------------------------------------------------------- /integration/ConsulClient.md: -------------------------------------------------------------------------------- 1 | # Vert.x Consul Client 2 | -------------------------------------------------------------------------------- /integration/Integration.md: -------------------------------------------------------------------------------- 1 | # Vert.x Integration 2 | -------------------------------------------------------------------------------- /integration/JCAAdaptor.md: -------------------------------------------------------------------------------- 1 | # Vert.x JCA Adaptor 2 | -------------------------------------------------------------------------------- /integration/KafkaClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/integration/KafkaClient.md -------------------------------------------------------------------------------- /integration/MailClient.md: -------------------------------------------------------------------------------- 1 | # Vert.x Mail Client 2 | -------------------------------------------------------------------------------- /integration/RabbitMQClient.md: -------------------------------------------------------------------------------- 1 | # Vert.x RabbitMQ Client 2 | -------------------------------------------------------------------------------- /integration/STOMPClient&Server.md: -------------------------------------------------------------------------------- 1 | # Vert.x STOMP Client & Server 2 | -------------------------------------------------------------------------------- /iot/MQTTServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/iot/MQTTServer.md -------------------------------------------------------------------------------- /microservices/CircuitBreaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/microservices/CircuitBreaker.md -------------------------------------------------------------------------------- /microservices/Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/microservices/Config.md -------------------------------------------------------------------------------- /microservices/ServiceDiscovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/microservices/ServiceDiscovery.md -------------------------------------------------------------------------------- /reactive/Reactive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/reactive/Reactive.md -------------------------------------------------------------------------------- /reactive/Reactivestreams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/reactive/Reactivestreams.md -------------------------------------------------------------------------------- /reactive/Rx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/reactive/Rx.md -------------------------------------------------------------------------------- /reactive/Sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/reactive/Sync.md -------------------------------------------------------------------------------- /services/HTTPServiceFactory.md: -------------------------------------------------------------------------------- 1 | # Vert.x HTTP Service Factory 2 | -------------------------------------------------------------------------------- /services/MavenServiceFactory.md: -------------------------------------------------------------------------------- 1 | # Vert.x Maven Service Factory 2 | -------------------------------------------------------------------------------- /services/ServiceFactories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/services/ServiceFactories.md -------------------------------------------------------------------------------- /services/ServiceProxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/services/ServiceProxies.md -------------------------------------------------------------------------------- /services/Services.md: -------------------------------------------------------------------------------- 1 | # Vert.x Services 2 | -------------------------------------------------------------------------------- /services/SockJSServiceProxies.md: -------------------------------------------------------------------------------- 1 | # Vert.x SockJS Service Proxies 2 | -------------------------------------------------------------------------------- /services/gRPC.md: -------------------------------------------------------------------------------- 1 | # Vert.x gRPC 2 | -------------------------------------------------------------------------------- /start/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/start/FAQ.md -------------------------------------------------------------------------------- /start/SimpleStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/start/SimpleStart.md -------------------------------------------------------------------------------- /start/Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/start/Start.md -------------------------------------------------------------------------------- /start/Start/comments-for-reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/start/Start/comments-for-reader.md -------------------------------------------------------------------------------- /testing/Testing.md: -------------------------------------------------------------------------------- 1 | # Vert.x Testing 2 | -------------------------------------------------------------------------------- /web/Web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/web/Web.md -------------------------------------------------------------------------------- /webclient/WebClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VertxChina/vertx-translation-chinese/HEAD/webclient/WebClient.md --------------------------------------------------------------------------------