AgsJackServer

AgsJackServer — JACK instance

Functions

Properties

AgsApplicationContext * application-context Read / Write
gchar * url Read / Write

Types and Values

Object Hierarchy

    GObject
    ╰── AgsJackServer

Implemented Interfaces

AgsJackServer implements AgsConnectable and AgsDistributedManager.

Includes

#include <ags/audio/jack/ags_jack_server.h>

Description

The AgsJackServer is an object to represent a running JACK instance.

Functions

ags_jack_server_find_url ()

GList *
ags_jack_server_find_url (GList *jack_server,
                          gchar *url);

Find AgsJackServer by url.

Parameters

jack_server

the AgsJackServer

 

url

the url to find

 

Returns

the GList containing a AgsJackServer matching url or NULL

Since: 0.7.3


ags_jack_server_find_client ()

GObject *
ags_jack_server_find_client (AgsJackServer *jack_server,
                             gchar *client_uuid);

Find AgsJackClient by uuid.

Parameters

jack_server

the AgsJackServer

 

client_uuid

the uuid to find

 

Returns

the AgsJackClient found or NULL

Since: 0.7.3


ags_jack_server_find_port ()

GObject *
ags_jack_server_find_port (AgsJackServer *jack_server,
                           gchar *port_uuid);

Find AgsJackPort by uuid.

Parameters

jack_server

the AgsJackServer

 

port_uuid

the uuid to find

 

Returns

the AgsJackPort found or NULL

Since: 0.7.3


ags_jack_server_add_client ()

void
ags_jack_server_add_client (AgsJackServer *jack_server,
                            GObject *jack_client);

Add jack_client to jack_server

Parameters

jack_server

the AgsJackServer

 

jack_client

the AgsJackClient to add

 

Since: 0.7.3


ags_jack_server_remove_client ()

void
ags_jack_server_remove_client (AgsJackServer *jack_server,
                               GObject *jack_client);

Remove jack_client to jack_server

Parameters

jack_server

the AgsJackServer

 

jack_client

the AgsJackClient to remove

 

Since: 0.7.3


ags_jack_server_new ()

AgsJackServer *
ags_jack_server_new (GObject *application_context,
                     gchar *url);

Instantiate a new AgsJackServer.

Parameters

application_context

the AgsApplicationContext

 

url

the URL as string

 

Returns

the new AgsJackServer

Since: 0.7.1

Types and Values

AGS_JACK_SERVER_DEFAULT_PROTOCOL

#define AGS_JACK_SERVER_DEFAULT_PROTOCOL "udp"


AGS_JACK_SERVER_DEFAULT_HOST

#define AGS_JACK_SERVER_DEFAULT_HOST "localhost"


AGS_JACK_SERVER_DEFAULT_PORT

#define AGS_JACK_SERVER_DEFAULT_PORT (3000)


enum AgsJackServerFlags

Members

AGS_JACK_SERVER_CONNECTED

   

Property Details

The “application-context” property

  “application-context”      AgsApplicationContext *

The application context object.

Flags: Read / Write

Since: 0.7.1


The “url” property

  “url”                      gchar *

The URL.

Flags: Read / Write

Default value: NULL

Since: 0.7.1