码迷,mamicode.com
首页 > 其他好文 > 详细

代理模式

时间:2016-12-24 23:05:47      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:tle   ace   mil   笔记   实体   任务   通过   nts   query   

定义:在客户端与实体之间建立一个代理对象(proxy),客户端对实体进行操作全部委派给代理对象,隐藏实体的具体实现细节
好处:代理对象(proxy)还可以与业务代码分离,部署到另外的服务器。业务代码中通过RPC来委派任务

$proxy = new \IMooc\Proxy();
$proxy->getUserName($id);
$proxy->setUserName($id, $name);

<?php
namespace IMooc;

interface IUserProxy
{
function getUserName($id);
function setUserName($id, $name);
}

<?php
namespace IMooc;

class Proxy implements IUserProxy
{

function getUserName($id)
{
$db = Factory::createDatabase(‘slave‘);
$db->query("select name from user where id = $id limit 1");
}

function setUserName($id, $name)
{
$db = Factory::createDatabase(‘master‘);
$db->query("update user set name = $name where id = $id limit 1");
}
}




代理模式

标签:tle   ace   mil   笔记   实体   任务   通过   nts   query   

原文地址:http://www.cnblogs.com/phonecom/p/a98dfd92bc0580b3141d14a2b04716cc.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!