1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
|
<?xml version="1.0" ?>
<node name="/Channel_Type_Text" xmlns:tp="http://telepathy.freedesktop.org/wiki/DbusSpec#extensions-v0">
<tp:copyright> Copyright © 2005-2009 Collabora Limited </tp:copyright>
<tp:copyright> Copyright © 2005-2009 Nokia Corporation </tp:copyright>
<tp:copyright> Copyright © 2006 INdT </tp:copyright>
<tp:license xmlns="http://www.w3.org/1999/xhtml">
<p>This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.</p>
<p>This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.</p>
<p>You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.</p>
</tp:license>
<interface name="org.freedesktop.Telepathy.Channel.Type.Text">
<tp:requires interface="org.freedesktop.Telepathy.Channel"/>
<tp:simple-type name="Message_ID" type="u" array-name="Message_ID_List">
<tp:docstring>
A unique-per-channel identifier for an incoming message. These
SHOULD be allocated in a way that minimizes collisions (in particular,
message IDs SHOULD NOT be re-used until all of the 32-bit integer
space has already been used).
</tp:docstring>
</tp:simple-type>
<tp:struct name="Pending_Text_Message" array-name="Pending_Text_Message_List">
<tp:docstring>A struct (message ID, timestamp in seconds since
1970-01-01 00:00 UTC, sender's handle, message type, flags, text)
representing a pending text message, as returned by
<tp:member-ref>ListPendingMessages</tp:member-ref>. The arguments of
the <tp:member-ref>Received</tp:member-ref> signal also match this
struct's signature.</tp:docstring>
<tp:member type="u" tp:type="Message_ID" name="Identifier"/>
<tp:member type="u" tp:type="Unix_Timestamp" name="Unix_Timestamp"/>
<tp:member type="u" tp:type="Contact_Handle" name="Sender"/>
<tp:member type="u" tp:type="Channel_Text_Message_Type"
name="Message_Type"/>
<tp:member type="u" tp:type="Channel_Text_Message_Flags" name="Flags"/>
<tp:member type="s" name="Text"/>
</tp:struct>
<method name="AcknowledgePendingMessages"
tp:name-for-bindings="Acknowledge_Pending_Messages">
<arg direction="in" name="IDs" type="au" tp:type="Message_ID[]">
<tp:docstring>
The IDs of the messages to acknowledge
</tp:docstring>
</arg>
<tp:docstring>
Inform the channel that you have handled messages by displaying them to
the user (or equivalent), so they can be removed from the pending queue.
</tp:docstring>
<tp:possible-errors>
<tp:error name="org.freedesktop.Telepathy.Error.InvalidArgument">
<tp:docstring>
A given message ID was not found, so no action was taken
</tp:docstring>
</tp:error>
</tp:possible-errors>
</method>
<method name="GetMessageTypes" tp:name-for-bindings="Get_Message_Types">
<arg direction="out" type="au" tp:type="Channel_Text_Message_Type[]"
name="Available_Types">
<tp:docstring>
An array of integer message types (ChannelTextMessageType)
</tp:docstring>
</arg>
<tp:docstring>
Return an array indicating which types of message may be sent on this
channel.
</tp:docstring>
</method>
<method name="ListPendingMessages"
tp:name-for-bindings="List_Pending_Messages">
<arg direction="in" name="Clear" type="b">
<tp:docstring>
If true, behave as if
<tp:member-ref>AcknowledgePendingMessages</tp:member-ref> had also
been called.
</tp:docstring>
<tp:deprecated version="0.17.3">
Setting this to true is NOT RECOMMENDED for clients that
have some sort of persistent message storage - clients SHOULD only
acknowledge messages after they have actually stored them, which is
impossible if this flag is true.</tp:deprecated>
</arg>
<arg direction="out" type="a(uuuuus)" tp:type="Pending_Text_Message[]"
name="Pending_Messages">
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
An array of structs representing the pending queue. Each contains:
<ul>
<li>a numeric identifier</li>
<li>a Unix timestamp indicating when the message was received</li>
<li>the contact handle for the contact who sent the message</li>
<li>the message type, taken from ChannelTextMessageType</li>
<li>the bitwise-OR of the message flags from ChannelTextMessageFlags</li>
<li>the text of the message</li>
</ul>
</tp:docstring>
</arg>
<tp:docstring>
List the messages currently in the pending queue, and optionally
remove then all.
</tp:docstring>
</method>
<signal name="LostMessage" tp:name-for-bindings="Lost_Message">
<tp:docstring>
This signal is emitted to indicate that an incoming message was
not able to be stored and forwarded by the connection manager
due to lack of memory.
</tp:docstring>
</signal>
<signal name="Received" tp:name-for-bindings="Received">
<arg name="ID" type="u">
<tp:docstring>
A numeric identifier for acknowledging the message
</tp:docstring>
</arg>
<arg name="Timestamp" type="u" tp:type="Unix_Timestamp">
<tp:docstring>
A Unix timestamp indicating when the message was received
</tp:docstring>
</arg>
<arg name="Sender" type="u" tp:type="Contact_Handle">
<tp:docstring>
The handle of the contact who sent the message
</tp:docstring>
</arg>
<arg name="Type" type="u" tp:type="Channel_Text_Message_Type">
<tp:docstring>
The type of the message (normal, action, notice, etc.)
</tp:docstring>
</arg>
<arg name="Flags" type="u" tp:type="Channel_Text_Message_Flags">
<tp:docstring>
A bitwise OR of the message flags
</tp:docstring>
</arg>
<arg name="Text" type="s">
<tp:docstring>
The text of the message
</tp:docstring>
</arg>
<tp:docstring>
Signals that a message with the given id, timestamp, sender, type
and text has been received on this channel. Applications that catch
this signal and reliably inform the user of the message should
acknowledge that they have dealt with the message with the
<tp:member-ref>AcknowledgePendingMessages</tp:member-ref> method.
</tp:docstring>
</signal>
<method name="Send" tp:name-for-bindings="Send">
<arg direction="in" name="Type" type="u" tp:type="Channel_Text_Message_Type">
<tp:docstring>
An integer indicating the type of the message
</tp:docstring>
</arg>
<arg direction="in" name="Text" type="s">
<tp:docstring>
The message to send
</tp:docstring>
</arg>
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>Request that a message be sent on this channel. When the message has
been submitted for delivery, this method will return and the
<tp:member-ref>Sent</tp:member-ref> signal will be emitted. If the
message cannot be submitted for delivery, the method returns an error
and no signal is emitted.</p>
<p>This method SHOULD return before the Sent signal is
emitted.</p>
<tp:rationale>
<p>When a Text channel implements the <tp:dbus-ref
namespace="org.freedesktop.Telepathy.Channel.Interface">Messages</tp:dbus-ref>
interface, that "SHOULD" becomes a "MUST".</p>
</tp:rationale>
</tp:docstring>
<tp:possible-errors>
<tp:error name="org.freedesktop.Telepathy.Error.Disconnected"/>
<tp:error name="org.freedesktop.Telepathy.Error.NetworkError"/>
<tp:error name="org.freedesktop.Telepathy.Error.InvalidArgument"/>
<tp:error name="org.freedesktop.Telepathy.Error.PermissionDenied"/>
</tp:possible-errors>
</method>
<tp:enum name="Channel_Text_Send_Error" type="u">
<tp:enumvalue suffix="Unknown" value="0">
<tp:docstring>
An unknown error occurred
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Offline" value="1">
<tp:docstring>
The requested contact was offline
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Invalid_Contact" value="2">
<tp:docstring>
The requested contact is not valid
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Permission_Denied" value="3">
<tp:docstring>
The user does not have permission to speak on this channel
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Too_Long" value="4">
<tp:docstring>
The outgoing message was too long and was rejected by the server
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Not_Implemented" value="5">
<tp:docstring>
The channel doesn't support sending text messages to the requested
contact
</tp:docstring>
</tp:enumvalue>
</tp:enum>
<signal name="SendError" tp:name-for-bindings="Send_Error">
<arg name="Error" type="u" tp:type="Channel_Text_Send_Error">
<tp:docstring>
The error that occurred
</tp:docstring>
</arg>
<arg name="Timestamp" type="u" tp:type="Unix_Timestamp">
<tp:docstring>
The Unix timestamp indicating when the message was sent
</tp:docstring>
</arg>
<arg name="Type" type="u" tp:type="Channel_Text_Message_Type">
<tp:docstring>
The message type
</tp:docstring>
</arg>
<arg name="Text" type="s">
<tp:docstring>
The text of the message
</tp:docstring>
</arg>
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>Signals that an outgoing message has failed to send. The error
will be one of the values from ChannelTextSendError.</p>
<p>This signal should only be emitted for messages for which
<tp:member-ref>Sent</tp:member-ref> has already been emitted and
<tp:member-ref>Send</tp:member-ref> has already returned success.</p>
</tp:docstring>
<tp:changed version="0.17.3">older spec versions claimed that SendError
was emitted <em>instead of</em> Sent, rather than <em>in addition
to</em> Sent. However, the 0.17.3+ semantics were what we'd always
actually implemented.</tp:changed>
</signal>
<signal name="Sent" tp:name-for-bindings="Sent">
<arg name="Timestamp" type="u" tp:type="Unix_Timestamp">
<tp:docstring>
Unix timestamp indicating when the message was sent
</tp:docstring>
</arg>
<arg name="Type" type="u" tp:type="Channel_Text_Message_Type">
<tp:docstring>
The message type (normal, action, notice, etc) from
ChannelTextMessageType
</tp:docstring>
</arg>
<arg name="Text" type="s">
<tp:docstring>
The text of the message. If the message was, or will be, altered
during transmission, this argument SHOULD reflect what other
contacts will receive rather than being a copy of the argument
to <tp:member-ref>Send</tp:member-ref>.
</tp:docstring>
</arg>
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>Signals that a message has been submitted for sending.</p>
</tp:docstring>
</signal>
<tp:enum name="Channel_Text_Message_Type" type="u"
array-name="Channel_Text_Message_Type_List">
<tp:docstring>
The type of message.
</tp:docstring>
<tp:enumvalue suffix="Normal" value="0">
<tp:docstring>
An ordinary chat message. Unknown types SHOULD be treated like this.
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Action" value="1">
<tp:docstring>
An action which might be presented to the user as
"* <sender> <action>", such as an IRC CTCP
ACTION (typically selected by the "/me" command). For example, the
text of the message might be "drinks more coffee".
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Notice" value="2">
<tp:docstring>
A one-off or automated message not necessarily expecting a reply
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Auto_Reply" value="3">
<tp:docstring>
An automatically-generated reply message.
</tp:docstring>
</tp:enumvalue>
<tp:enumvalue suffix="Delivery_Report" value="4">
<tp:docstring>
A delivery report. This message type MUST NOT appear unless the
channel supports the <tp:dbus-ref
namespace="org.freedesktop.Telepathy.Channel.Interface">Messages</tp:dbus-ref>
interface; see <tp:type>Message_Part</tp:type> for the format that
delivery reports must take.
</tp:docstring>
</tp:enumvalue>
</tp:enum>
<tp:flags name="Channel_Text_Message_Flags" value-prefix="Channel_Text_Message_Flag" type="u">
<tp:flag suffix="Truncated" value="1">
<tp:docstring>
The incoming message was truncated to a shorter length by the
server or the connection manager.
</tp:docstring>
</tp:flag>
<tp:flag suffix="Non_Text_Content" value="2">
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>The incoming message contained non-text content which cannot be
represented by this interface, but has been signalled
in the <tp:dbus-ref
namespace="org.freedesktop.Telepathy.Channel.Interface">Messages</tp:dbus-ref>
interface.</p>
<p>Connection managers SHOULD only set this flag if the non-text
content appears to be relatively significant (exactly how
significant is up to the implementor). The intention is that
if this flag is set, clients using this interface SHOULD inform
the user that part of the message was not understood.</p>
</tp:docstring>
</tp:flag>
<tp:flag suffix="Scrollback" value="4">
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>The incoming message was part of a replay of message history.</p>
<tp:rationale>
<p>In XMPP multi-user chat, a few past messages are replayed
when you join a chatroom. A sufficiently capable IRC connection
manager could also set this flag on historical messages when
connected to a proxy like bip or irssi-proxy. The existence
of this flag allows loggers and UIs to use better heuristics
when eliminating duplicates (a simple implementation made
possible by this flag would be to avoid logging scrollback
at all).</p>
</tp:rationale>
</tp:docstring>
</tp:flag>
<tp:flag suffix="Rescued" value="8">
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>The incoming message has been seen in a previous channel during
the lifetime of the <tp:dbus-ref
namespace="org.freedesktop.Telepathy">Connection</tp:dbus-ref>, but
had not been acknowledged
when that channel closed, causing an identical channel (the
channel in which the message now appears) to open.</p>
<tp:rationale>
<p>This means that a logger (which should already have seen the
message in the previous channel) is able to recognise and ignore
these replayed messages.</p>
</tp:rationale>
</tp:docstring>
</tp:flag>
</tp:flags>
<tp:property name="anonymous" type="b">
<tp:docstring>
True if people may join the channel without other members being made
aware of their identity.
</tp:docstring>
</tp:property>
<tp:property name="invite-only" type="b">
<tp:docstring>
True if people may not join the channel until they have been invited.
</tp:docstring>
</tp:property>
<tp:property name="limit" type="u">
<tp:docstring>
The limit to the number of members, if limited is true.
</tp:docstring>
</tp:property>
<tp:property name="limited" type="b">
<tp:docstring>
True if there is a limit to the number of channel members.
</tp:docstring>
</tp:property>
<tp:property name="moderated" type="b">
<tp:docstring>
True if channel membership is not sufficient to allow participation.
</tp:docstring>
</tp:property>
<tp:property name="name" type="s">
<tp:docstring>
A human-visible name for the channel, if it differs from the channel's
<tp:dbus-ref namespace="org.freedesktop.Telepathy.Channel">TargetID</tp:dbus-ref>.
</tp:docstring>
</tp:property>
<tp:property name="description" type="s">
<tp:docstring>
A human-readable description of the channel's overall purpose.
</tp:docstring>
</tp:property>
<tp:property name="password" type="s">
<tp:docstring>
The password required to enter the channel if password-required is true.
</tp:docstring>
</tp:property>
<tp:property name="password-required" type="b">
<tp:docstring>
True if a password must be provided to enter the channel.
</tp:docstring>
</tp:property>
<tp:property name="persistent" type="b">
<tp:docstring>
True if the channel will remain in existence on the server after all
members have left it.
</tp:docstring>
</tp:property>
<tp:property name="private" type="b">
<tp:docstring>
True if the channel is not visible to non-members.
</tp:docstring>
</tp:property>
<tp:property name="subject" type="s">
<tp:docstring>
A human-readable description of the current subject of conversation in
the channel, similar to /topic in IRC. This is equivalent to the
<tp:dbus-ref namespace="org.freedesktop.Telepathy.Channel.Interface.Room.DRAFT"
>Subject</tp:dbus-ref> property in the Room interface which will replace
this Telepathy property.
</tp:docstring>
</tp:property>
<tp:property name="subject-contact" type="u" tp:type="Contact_Handle">
<tp:docstring>
A contact handle representing who last modified the subject, or 0
if it isn't known. This is equivalent to the
<tp:dbus-ref namespace="org.freedesktop.Telepathy.Channel.Interface.Room.DRAFT"
>Subject</tp:dbus-ref> property in the Room interface which will replace
this Telepathy property.
</tp:docstring>
</tp:property>
<tp:property name="subject-timestamp" type="u" tp:type="Unix_Timestamp">
<tp:docstring>
A unix timestamp indicating when the subject was last modified.
This is equivalent to the
<tp:dbus-ref namespace="org.freedesktop.Telepathy.Channel.Interface.Room.DRAFT"
>Subject</tp:dbus-ref> property in the Room interface which will replace
this Telepathy property.
</tp:docstring>
</tp:property>
<tp:docstring xmlns="http://www.w3.org/1999/xhtml">
<p>A channel type for sending and receiving messages in plain text,
with no formatting. In future specifications, channels for sending
and receiving messages that can be reduced to plain text (i.e.
formatted text) should also have this type.</p>
<p>When a message is received, an identifier is assigned and a
<tp:member-ref>Received</tp:member-ref> signal emitted, and the message
placed in a pending queue which can be inspected with
<tp:member-ref>ListPendingMessages</tp:member-ref>. A client which has
handled the message by showing it to the user (or equivalent) should
acknowledge the receipt using the
<tp:member-ref>AcknowledgePendingMessages</tp:member-ref> method,
and the message will then be removed from the pending queue. Numeric
identifiers for received messages may be reused over the lifetime of
the channel.</p>
<p>Each message has an associated 'type' value, which should be one
of the values allowed by
<tp:type>Channel_Text_Message_Type</tp:type>.</p>
<p>Each message also has a flags value, which is a bitwise OR of the
flags given in <tp:type>Channel_Text_Message_Flags</tp:type>.</p>
<p>Sending messages can be requested using the
<tp:member-ref>Send</tp:member-ref> method, which will return
successfully and emit the <tp:member-ref>Sent</tp:member-ref> signal
when the message has been delivered to the server, or return an error
with no signal emission if there is a failure. If a message is sent but
delivery of the message later fails, this is indicated with the
<tp:member-ref>SendError</tp:member-ref> signal.</p>
<p>On protocols where additional contacts cannot be invited into
a one-to-one chat, or where a one-to-one chat is just a series of
individual personal messages rather than being represented by some
object on the server (i.e. most protocols), one-to-one chats should be
represented by a Text channel with <tp:type>Handle_Type</tp:type>
CONTACT.</p>
<p>Named chat rooms whose identity can be saved and used again later
(IRC channels, Jabber MUCs) are expected to be represented by Text
channels with <tp:type>Handle_Type</tp:type> ROOM and the <tp:dbus-ref
namespace="org.freedesktop.Telepathy.Channel.Interface">Group</tp:dbus-ref>
interface; they should usually also have the Properties interface.</p>
<p>Unnamed, transient chat rooms defined only by their members (e.g. on
MSN) are expected to be represented by Text channels with handle type
0, handle 0, the <tp:dbus-ref
namespace="org.freedesktop.Telepathy.Channel.Interface">Group</tp:dbus-ref>
interface, and optionally the Properties interface.</p>
<p>On protocols where a conversation with a user is actually just
a nameless chat room starting with exactly two members, to which
more members can be invited, calling
<tp:dbus-ref namespace="org.freedesktop.Telepathy.Connection">RequestChannel</tp:dbus-ref>
with type Text
and handle type CONTACT should continue to succeed, but may return
a channel with handle type 0, handle 0, the group interface,
and the local and remote contacts in its members.</p>
<p>If a channel of type Text is closed while it has pending messages,
the connection manager MUST allow this, but SHOULD open a new,
identical channel to deliver those messages, signalling it as a new
channel with the
<tp:dbus-ref namespace="org.freedesktop.Telepathy.Connection">NewChannel</tp:dbus-ref>
signal (with the suppress_handler parameter set to FALSE).</p>
<p>If messages were sent on the old channel but the
<tp:member-ref>Sent</tp:member-ref>signal has not yet been emitted
for those messages, the new channel SHOULD emit Sent for those
messages when appropriate - it behaves like a continuation of the
old channel.</p>
<tp:rationale>
<p>In effect, this turns this situation, in which a client
is likely to lose messages:</p>
<ul>
<li>UI window is closed</li>
<li>message arrives</li>
<li>text channel emits Received</li>
<li>UI calls Close on text channel before it has seen the
Received signal</li>
<li>text channel emits Closed and closes</li>
</ul>
<p>into something nearly equivalent to this situation, which is
fine:</p>
<ul>
<li>UI window is closed</li>
<li>UI calls Close on text channel</li>
<li>text channel emits Closed and closes</li>
<li>message arrives</li>
<li>new text channel is created, connection emits NewChannel</li>
<li>(the same or a different) UI handles it</li>
</ul>
<p>suppress_handler must be set to FALSE so the replacement channel
will be handled by something.</p>
</tp:rationale>
<p>As a result, Text channels SHOULD implement <tp:dbus-ref
namespace="org.freedesktop.Telepathy">Channel.Interface.Destroyable</tp:dbus-ref>.</p>
<tp:rationale>
<p>This "respawning" behaviour becomes problematic if there is no
suitable handler for Text channels, or if a particular message
repeatedly crashes the Text channel handler; a channel dispatcher
can't just Close() the channel in these situations, because
it will come back.</p>
<p>In these situations, the channel dispatcher needs a last-resort
way to destroy the channel and stop it respawning. It could either
acknowledge the messages itself, or use the Destroyable interface;
the Destroyable interface has the advantage that it's not
channel-type-dependent, so the channel dispatcher only has to
understand one extra interface, however many channel types
eventually need a distinction between Close and Destroy.</p>
</tp:rationale>
</tp:docstring>
</interface>
</node>
<!-- vim:set sw=2 sts=2 et ft=xml: -->
|