DiCE API nvidia_logo_transpbg.gif Up
Bridge server

The Bridge server is a single remote host that makes its resources available to Bridge clients through a proprietary network protocol over a single TCP/IP connection. More...

Classes

class  mi::bridge::IServer_job
 Represents the server-side part of a job that can be executed by the Bridge server. More...
 
class  mi::bridge::Server_job<i_id1, i_id2, i_id3, i_id4, i_id5, i_id6, i_id7, i_id8, i_id9, i_id10, i_id11, I>
 This mixin class provides a default implementation for some of the methods needed by mi::bridge::IServer_job. More...
 
class  mi::bridge::IServer_job_info
 Provides additional information about a bridge job. More...
 
class  mi::bridge::IServer_job_list
 A list of IServer_job instances. More...
 
class  mi::bridge::IServer_transaction_callback
 Abstract interface for callbacks for transaction commit or abort events. More...
 
class  mi::bridge::IIncremental_snapshot_context
 Context for incremental snapshots. More...
 
class  mi::bridge::IServer_transaction
 Database transactions started on the client will be automatically mirrored to the server and exposed as instances of this class to executing Bridge jobs. More...
 
class  mi::bridge::IServer_session_state_callback
 Abstract interface for callbacks for session state changes. More...
 
class  mi::bridge::IServer_transaction_list
 A list of IServer_transaction instances. More...
 
class  mi::bridge::IServer_session
 Represents the server side of a Bridge session. More...
 
class  mi::bridge::IApplication_session_handler
 Abstract interface that can be used to control which sessions to a Bridge application are established, based on credentials supplied by the client. More...
 
class  mi::bridge::IApplication
 This class represents a Bridge application. More...
 
class  mi::bridge::IBridge_snapshot_context
 Context to import, export, or remove snapshots. More...
 
class  mi::bridge::IBridge_server
 API component that serves as entry point for the server-side Bridge API. More...
 
class  mi::bridge::IServer_video_context
 Server-side video context that generates and encodes video frames for the corresponding client-side video context. More...
 
class  mi::bridge::IVideo_source
 Abstract interface to generate video frames that are transmitted to the corresponding client-side video context. More...
 

Enumerations

enum  mi::bridge::Server_session_state {
  mi::bridge::SERVER_SESSION_CONNECTING = 0 ,
  mi::bridge::SERVER_SESSION_CONNECTED = 1 ,
  mi::bridge::SERVER_SESSION_PENDING = 2 ,
  mi::bridge::SERVER_SESSION_CLOSED = 3 ,
  SERVER_SESSION_FORCE_32_BIT = 0xffffffffU
}
 The different states a server session can be in. More...
 

Detailed Description

The Bridge server is a single remote host that makes its resources available to Bridge clients through a proprietary network protocol over a single TCP/IP connection.

The client uses the connection to send changes and delegate work to the Bridge server; the server uses the connection to send job results and other data back to the client.

A Bridge server can serve multiple clients at the same time. This is equivalent to starting multiple jobs simultaneously on a host in a normal local cluster.

See the API component mi::bridge::IBridge_server for a starting point.

See also
Bridge, Bridge client

Enumeration Type Documentation

 Server_session_state

The different states a server session can be in.

See also
mi::bridge::IServer_session::get_state()
Enumerator
SERVER_SESSION_CONNECTING 

A client has connected to the application but has not yet been approved.

SERVER_SESSION_CONNECTED 

The session has successfully established a connection to the Bridge application.

SERVER_SESSION_PENDING 

The session was disconnected unexpectedly and is waiting for the client to reconnect.

SERVER_SESSION_CLOSED 

The session has been closed.