Files
zhamao-framework/src/ZM/Context/ContextInterface.php

119 lines
2.2 KiB
PHP
Raw Normal View History

2020-04-15 10:55:10 +08:00
<?php
namespace ZM\Context;
2020-04-26 15:08:09 +08:00
use Swoole\Http\Request;
use Swoole\WebSocket\Frame;
use Swoole\WebSocket\Server;
2020-05-06 17:26:50 +08:00
use ZM\Connection\WSConnection;
2020-04-26 15:08:09 +08:00
use ZM\Http\Response;
use ZM\Utils\ZMRobot;
2020-04-26 15:08:09 +08:00
2020-04-15 10:55:10 +08:00
interface ContextInterface
{
2020-05-06 17:26:50 +08:00
public function __construct($cid);
2020-04-15 10:55:10 +08:00
2020-04-26 15:08:09 +08:00
/** @return Server */
2020-04-15 10:55:10 +08:00
public function getServer();
2020-04-26 15:08:09 +08:00
/** @return Frame */
2020-04-15 10:55:10 +08:00
public function getFrame();
2020-04-26 15:08:09 +08:00
/** @return mixed */
2020-04-15 10:55:10 +08:00
public function getData();
2020-05-06 17:26:50 +08:00
public function setData($data);
/** @return WSConnection */
public function getConnection();
/** @return int|null */
public function getFd();
2020-04-26 15:08:09 +08:00
/** @return int */
2020-04-15 10:55:10 +08:00
public function getCid();
2020-04-26 15:08:09 +08:00
/** @return Response */
2020-04-15 10:55:10 +08:00
public function getResponse();
2020-04-26 15:08:09 +08:00
/** @return Request */
2020-04-15 10:55:10 +08:00
public function getRequest();
/** @return ZMRobot */
public function getRobot();
2020-05-06 17:26:50 +08:00
/** @return mixed */
public function getUserId();
/** @return mixed */
public function getGroupId();
/** @return mixed */
public function getDiscussId();
/** @return string */
public function getMessageType();
/** @return mixed */
public function getRobotId();
/** @return mixed */
public function getMessage();
public function setMessage($msg);
public function setUserId($id);
public function setGroupId($id);
public function setDiscussId($id);
public function setMessageType($type);
2020-05-23 17:23:29 +08:00
public function getCQResponse();
2020-05-06 17:26:50 +08:00
/**
* @param $msg
* @param bool $yield
* @return mixed
*/
public function reply($msg, $yield = false);
/**
* @param $msg
* @param bool $yield
* @return mixed
*/
public function finalReply($msg, $yield = false);
/**
* @param string $prompt
* @param int $timeout
* @param string $timeout_prompt
* @return mixed
*/
public function waitMessage($prompt = "", $timeout = 600, $timeout_prompt = "");
/**
* @param $arg
* @param $mode
* @param $prompt_msg
* @return mixed
*/
public function getArgs(&$arg, $mode, $prompt_msg);
public function setCache($key, $value);
/**
* @param $key
* @return mixed
*/
public function getCache($key);
public function cloneFromParent();
public function copy();
2020-04-15 10:55:10 +08:00
}