全部博文(921)
发布时间:2013-12-19 11:23:57
#! /usr/bin/env python#coding=utf-8###工具:可以对应设计模式中的单子模式##1序言#现在我们已经了解了接口、适配器以及组件注册表的概念。#有时注册一个并不适配任何东西的对象也是有用的。#比如数据库连接、XML解析器、返.........【阅读全文】
发布时间:2013-12-19 11:15:33
#! /usr/bin/env python#coding=utf-8###适配器from zope.component import adaptsfrom zope.interface import implements, Interface, Attributeclass IDesk(Interface): """A frontdesk will regist.........【阅读全文】
发布时间:2013-12-18 19:42:34
https://github.com/therve/twotp/PrequesitesIn this document, we'll assume that you have a basic knowledge of Twisted (how to create a client, how to create a server, what is the protocol/factory mechanism, what is a deferred), and of Erlang (what is a node, what is the EPMD, what are the.........【阅读全文】
发布时间:2013-12-18 16:58:35
书节上回 http://blog.chinaunix.net/uid-429659-id-3160023.html ,我们对twisted框架中的组件、接口和适配器的用法做阐述,本章我们简要的对其中的例子中的适配器,用zope的组件实现以下。从中可以大致了解zope组件对适配器的使用方式。#! /usr/bin/env python#coding=utf-8.........【阅读全文】
发布时间:2013-11-18 22:12:06
Erlang中节点之间建立链接我们可以使用net_adm:ping(),连接成功返回pong,失败返回pang;实践中我们不仅仅是要建立连接,比如我们需要在与其它节点建立连接或者其它节点断开的时候做一些事情,比如在节点当掉的时候记录日志,这就需要在对应的时机取得相应的信息;Erlang在net_kernel库中提供了这样的方法:net_kernel:mon.........【阅读全文】