| Home >> All >> jreceiver >> common >> [ rpc Javadoc ] |
| | jreceiver.common.rpc.xmlrpc.* (31) |
jreceiver.common.rpc: Javadoc index of package jreceiver.common.rpc.
Package Samples:
jreceiver.common.rpc.xmlrpc: A set of wrapper classes to remotely query and control the JReceiver Engine.
Classes:
Menus: Menu-related queries and updates for a (possibly-remote) JRec server, returning MenuRecs or String-formatted results. TUNE QUERIES A 'tune query' is a shorthand means of specifying a filter. For example, to obtain a list of albums for an artist: Menus mnu_rpc = RpcFactory.newMenus(); TuneQuery tq = new TuneQuery(); tq.setArtistName("Pink Floyd"); Vector albums = mnu_rpc.getAlbumMenuRecs(tq, driver_id, 0, Menu.NO_LIMIT); Iterator it = albums.iterator(); while (it.hasNext()) { Menu menu = (Menu)it.next(); System.out.println("album_name=" + menu.getMenuText() + " tune_count=" + menu.getTuneCount()); ...
RpcException: The remote client exception class for the JReceiver project. Used with XML-RPC and possibly other protocols as well. This is the beginnings of the application of a Java Idiom found at http://c2.com/cgi/wiki?HomogenizeExceptions See also at http://c2.com/cgi/wiki?NestedExceptions Create a single type of exception for each package and only propagate exceptions of that type or some sub-type out of methods in the package.
PlaylistEncoder: Playlists-related queries and updates for a (possibly-remote) JRec server, returning formatted results. Calls are made remotely to a PlaylistsHandler class.
PlaylistEncoderImpl: Playlists-related queries to a remote server via XML-RPC. Calls are made remotely to a PlaylistEncoderHandler class via XML-RPC.
RpcFactory: Factory to create an object to execute client-related (aka driver-related) queries to a remote server via some RPC mechanism.
ScannerSettings: Scanner-related settings queries and updates for a (possibly-remote) JRec server for the JReceiver Manager application
RpcFactoryBase: Factory to create an object to execute client-related (aka device-related) queries to a remote server.
Mexternals: Mexternals methods -- Media external-related queries and updates for a (possibly-remote) JRec server
TagEncoder: Tag-related queries and updates for a (possibly-remote) JRec server, returning formatted results.
Mfiles: Mfiles methods -- Media file-related queries and updates for a (possibly-remote) JRec server
DriverBindings: Driver Binding-definition queries and updates for a (possibly-remote) JRec server
DeviceBindings: DeviceBinding-definition queries and updates for a (possibly-remote) JRec server
Transcoders: Transcoder-definition queries and updates for a (possibly-remote) JRec server
Sources: Media-source-related queries and updates for a (possibly-remote) JRec server
Roots: Root-folder-related queries and updates for a (possibly-remote) JRec server
DevicesImpl: Device-related (aka device-related) queries to a remote server via XML-RPC.
DriversImpl: Driver-related (aka device-related) queries to a remote server via XML-RPC.
Signals: Signal-definition queries and updates for a (possibly-remote) JRec server
Commands: Command-oriented queries and updates for a (possibly-remote) JRec server
Playlists: Playlist-related queries and updates for a (possibly-remote) JRec server
Settings: Settings-related queries and updates for a (possibly-remote) JRec server
Drivers: Driver-related queries and updates for a (possibly-remote) JRec server.
Mimes: Mime-definition queries and updates for a (possibly-remote) JRec server
Scanner: Scanner-related control and queries for a (possibly-remote) JRec server
Devices: Device-related queries and updates for a (possibly-remote) JRec server
| Home | Contact Us | Privacy Policy | Terms of Service |