JSON RPC 的 PHP 类 2people
- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/2people/
软件介绍
2people 是一个简单的 PHP 类,实现了 JSON RPC。
示例代码:
$object = new API(); // Объект, к методам которого необходимо обращаться
$jsonRPC = new JsonRPC();
if( $jsonRPC->isJsonRpcRequest() ) // Проверка, на то, действительно ли это JSON-RPC запрос.
{
$jsonRPC->handle($object); // Передача объекта для обработки
$jsonRPC->echoJsonResponse(); // Вывод сформированного ответа
}
Programming Concurrency on the JVM
Venkat Subramaniam / The Pragmatic Bookshelf / 2011-6-1 / USD 35.00
Concurrency on the Java platform has evolved, from the synchronization model of JDK to software transactional memory (STM) and actor-based concurrency. This book is the first to show you all these con......一起来看看 《Programming Concurrency on the JVM》 这本书的介绍吧!
