Methods
CreateChannel | (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler) | → | o: Request | |
EnsureChannel | (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler) | → | o: Request | |
CreateChannelWithHints | (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler, a{sv}: Hints) | → | o: Request | |
EnsureChannelWithHints | (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler, a{sv}: Hints) | → | o: Request |
Properties
Interfaces | as (DBus_Interface_List) | Read only | ||
SupportsRequestHints | b | Read only |
Description
The channel dispatcher is responsible for responding to new channels and launching client processes to handle them. It also provides functionality for client processes to request that new channels are created.
If a channel dispatcher is running, it is responsible for dispatching new channels on all Connections created by the AccountManager. Connections not created by the AccountManager are outside the scope of the channel dispatcher.
Rationale:
The current channel dispatcher is defined to be the process that
owns the well-known bus name
org.freedesktop.Telepathy.ChannelDispatcher
on
the session bus. This process MUST export an object with this
interface at the object path
/org/freedesktop/Telepathy/ChannelDispatcher
.
Until a mechanism exists for making a reasonable automatic choice of ChannelDispatcher implementation, implementations SHOULD NOT register as an activatable service for the ChannelDispatcher's well-known bus name. Instead, it is RECOMMENDED that some component of the user's session will select and activate a particular implementation, and that other Telepathy-enabled programs can detect whether channel request/dispatch functionality is available by checking whether the ChannelDispatcher's well-known name is in use at runtime.
There are three categories of client process defined by this specification:
- Observer
Observers monitor the creation of new channels. This functionality can be used for things like message logging. All observers are notified simultaneously.
- Approver
-
Approvers notify the user that new channels have been created, and also select which channel handler will be used for the channel, either by asking the user or by choosing the most appropriate channel handler.
- Handler
-
Each new channel or set of channels is passed to exactly one handler as its final destination. A typical channel handler is a user interface process handling channels of a particular type.
Methods
CreateChannel (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler) → o: Request
Parameters
- Account — o
- Requested_Properties — a{sv} (Qualified_Property_Value_Map)
- User_Action_Time — x (User_Action_Timestamp)
- Preferred_Handler — s (DBus_Well_Known_Name)
A dictionary containing desirable properties.
This parameter is used in the same way as the corresponding parameter to CreateChannelWithHints.
The time at which user action occurred, or 0 if this channel request is for some reason not involving user action.
This parameter is used in the same way as the corresponding parameter to CreateChannelWithHints.
Either the well-known bus name (starting with
org.freedesktop.Telepathy.Client.
)
of the preferred handler for this
channel, or an empty string to indicate that any handler would be
acceptable.
This parameter is used in the same way as the corresponding parameter to CreateChannelWithHints.
Returns
- Request — o
Equivalent to calling CreateChannelWithHints with an empty Hints parameter.
Possible Errors
- Invalid Argument
org.freedesktop.Telepathy.Client.
,
the Account does not exist, or one of the Requested_Properties
is invalid
EnsureChannel (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler) → o: Request
Parameters
- Account — o
- Requested_Properties — a{sv} (Qualified_Property_Value_Map)
- User_Action_Time — x (User_Action_Timestamp)
- Preferred_Handler — s (DBus_Well_Known_Name)
A dictionary containing desirable properties.
This parameter is used in the same way as the corresponding parameter to CreateChannelWithHints.
The time at which user action occurred, or 0 if this channel request is for some reason not involving user action.
This parameter is used in the same way as the corresponding parameter to CreateChannelWithHints.
Either the well-known bus name (starting with
org.freedesktop.Telepathy.Client.
)
of the preferred handler for this
channel, or an empty string to indicate that any handler would be
acceptable. The behaviour and rationale are the same as for the
corresponding parameter to
EnsureChannelWithHints.
Returns
- Request — o
Equivalent to calling EnsureChannelWithHints with an empty Hints parameter.
Possible Errors
- Invalid Argument
org.freedesktop.Telepathy.Client.
,
the Account does not exist, or one of the Requested_Properties
is invalid
CreateChannelWithHints (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler, a{sv}: Hints) → o: Request
Parameters
- Account — o
- Requested_Properties — a{sv} (Qualified_Property_Value_Map)
- User_Action_Time — x (User_Action_Timestamp)
- Preferred_Handler — s (DBus_Well_Known_Name)
- Hints — a{sv}
A dictionary containing desirable properties. This has the same semantics as the corresponding parameter to Connection.Interface.Requests.CreateChannel.
Certain properties will not necessarily make sense in this dictionary: for instance, TargetHandle can only be given if the requester is able to interact with a Connection to the desired account.
The time at which user action occurred, or 0 if this channel
request is for some reason not involving user action.
The UserActionTime
property will be set to this value, and it will eventually be
passed as the User_Action_Time
parameter of HandleChannels.
Either the well-known bus name (starting with
org.freedesktop.Telepathy.Client.
)
of the preferred handler for this
channel, or an empty string to indicate that any handler would be
acceptable. The channel dispatcher SHOULD dispatch as many as
possible of the resulting channels (ideally, all of them)
to that handler—irrespective of whether that handler's HandlerChannelFilter
matches the channel—and SHOULD remember the preferred handler
so it can try to dispatch subsequent channels in the same bundle
to the same handler.
Rationale:
If this is a well-known bus name and the handler has the Requests interface, the channel dispatcher SHOULD call AddRequest on that Handler after this method has returned.
Rationale:
This is copied to the ChannelRequest that is returned, as the PreferredHandler property.
Additional information about the channel request, which will be used as the value for the resulting request's Hints property.
Rationale:
Returns
- Request — o
Start a request to create a channel. This initially just creates a ChannelRequest object, which can be used to continue the request and track its success or failure.
Rationale:
If this method is called for an Account that is disabled, invalid or otherwise unusable, no error is signalled until ChannelRequest.Proceed is called, at which point ChannelRequest.Failed is emitted with an appropriate error.
Rationale:
Possible Errors
- Invalid Argument
org.freedesktop.Telepathy.Client.
,
the Account does not exist, or one of the Requested_Properties
is invalid
EnsureChannelWithHints (o: Account, a{sv}: Requested_Properties, x: User_Action_Time, s: Preferred_Handler, a{sv}: Hints) → o: Request
Parameters
- Account — o
- Requested_Properties — a{sv} (Qualified_Property_Value_Map)
- User_Action_Time — x (User_Action_Timestamp)
- Preferred_Handler — s (DBus_Well_Known_Name)
- Hints — a{sv}
A dictionary containing desirable properties. This has the same semantics as the corresponding parameter to Connection.Interface.Requests.EnsureChannel.
Certain properties will not necessarily make sense in this dictionary: for instance, TargetHandle can only be given if the requester is able to interact with a Connection to the desired account.
The time at which user action occurred, or 0 if this channel request is for some reason not involving user action.
This parameter is used in the same way as the corresponding parameter to CreateChannelWithHints.
Either the well-known bus name (starting with
org.freedesktop.Telepathy.Client.
)
of the preferred handler for this
channel, or an empty string to indicate that any handler would be
acceptable. The behaviour and rationale are the same as for the
corresponding parameter to
CreateChannelWithHints, except
as noted here.
If any new channels are created in response to this
request, the channel dispatcher SHOULD dispatch as many as
possible of the resulting channels (ideally, all of them)
to that handler, and SHOULD remember the preferred handler
so it can try to dispatch subsequent channels in the same bundle
to the same handler. If the requested channel already exists (that
is, Connection.Interface.Requests.EnsureChannel
returns Yours=False
) then the channel dispatcher
SHOULD re-dispatch the channel to its existing handler, and MUST
NOT dispatch it to this client (unless it is the existing handler);
the request is still deemed to have succeeded in this case.
Rationale:
Returns
- Request — o
Start a request to ensure that a channel exists, creating it if necessary. This initially just creates a ChannelRequest object, which can be used to continue the request and track its success or failure.
If this method is called for an Account that is disabled, invalid or otherwise unusable, no error is signalled until ChannelRequest.Proceed is called, at which point ChannelRequest.Failed is emitted with an appropriate error.
Rationale:
Possible Errors
- Invalid Argument
org.freedesktop.Telepathy.Client.
,
the Account does not exist, or one of the Requested_Properties
is invalid
Properties
Interfaces — as (DBus_Interface_List)
SupportsRequestHints — b
True
, the channel dispatcher is new enough to support
CreateChannelWithHints and
EnsureChannelWithHints, in addition
to the older CreateChannel
and EnsureChannel
methods, and also new enough to emit SucceededWithChannel
before the older Succeeded signal.
If False
or missing, only the metadata-less
variants are supported.