- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 Ratchet 中使用 sessionProvider,以下是我的 shell 脚本:
namespace App\Console\Commands;
use Ratchet\Session\SessionProvider;
use Illuminate\Console\Command;
use Ratchet\Server\IoServer;
use App\Http\Controllers\WebSockets\Chat;
use Ratchet\WebSocket\WsServer;
use Ratchet\Http\HttpServer;
use Symfony\Component\HttpFoundation\Session\Storage\Handler;
class ChatShell extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'command:chat';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$memcached = new \Memcached();
$server = IoServer::factory(
new HttpServer(
new WsServer(
new SessionProvider(
new Chat(),
new Handler\MemcachedSessionHandler($memcached)
)
)
),
6502
);
$server->run();
}
}
Argument 1 passed to Ratchet\Session\SessionProvider::__construct() must implement interface Ratchet\Http\HttpServerInterface, instance of App\Http\Controllers\WebSockets\Chat given
MessageComponentInterface
.
最佳答案
好的,经过长时间的搜索,我找到了解决方案,尽管 ratchet document说 WsServer 包装的 sessionProvider,sessionProvider 应该 包裹 WsServer。
经线应该是这样的:
IoServer::factory(
new HttpServer(
new SessionProvider(
new WsServer(
new Chat()
),
new Handler\MemcachedSessionHandler($memcached)
)
),
6502
);
关于php - 传递给 Ratchet\Session\SessionProvider::__construct() 的参数 1 必须实现接口(interface) Ratchet\Http\HttpServerInterface,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53446298/
我们最近将 Google Cast SDK 更新到了版本 3。有了这个 SDK,应该可以通过在 OptionsProvider 中实现 getAdditionalSessionProviders()
我正在使用带有 Next-auth 的 mantine 模板,我尝试在应用程序中实现 sessionProvider,我得到错误 session 未定义 Error implementing sess
我了解到 Asp.Net 的默认 sessionprovider 对于分布式应用程序来说并不是一个好的做法。所以我决定将asp.net的sessionprovider更改为couchbase。但当我尝
我正在将以下代码添加到我现有的 js 文件中以验证身份验证,我正在尝试遵循下一个身份验证文档,但我收到此错误“[next-auth]: useSession必须包裹在 SessionProvider
我正在尝试在 Ratchet 中使用 sessionProvider,以下是我的 shell 脚本: namespace App\Console\Commands; use Ratchet\S
我是一名优秀的程序员,十分优秀!