<?php
/** @noinspection PhpIllegalPsrClassPathInspection */

namespace Kicken\Chat;

interface 
ISelectable {
    public function 
getResource();

    public function 
hasPendingWrites() : bool;

    public function 
nowReadable() : void;

    public function 
nowWritable() : void;
}