Name | |
---|---|
typedef void(MAMACALLTYPE *)(mamaSourceManager sourceManager, mamaSource source, void *closure) | mamaSourceManager_sourcesIteratorCb |
Name | |
---|---|
MAMAExpDLL mama_status | mamaSourceManager_create(mamaSourceManager * sourceManager) |
MAMAExpDLL mama_status | mamaSourceManager_destroy(mamaSourceManager sourceManager) |
MAMAExpDLL mama_status | mamaSourceManager_createSource(mamaSourceManager sourceManager, const char * name, mamaSource * source) |
MAMAExpDLL mama_status | mamaSourceManager_findOrCreateSource(mamaSourceManager sourceManager, const char * name, mamaSource * source) |
MAMAExpDLL mama_status | mamaSourceManager_findSource(mamaSourceManager sourceManager, const char * name, mamaSource * source) |
MAMAExpDLL mama_status | mamaSourceManager_addSource(mamaSourceManager sourceManager, mamaSource source) |
MAMAExpDLL mama_status | mamaSourceManager_addSourceWithName(mamaSourceManager sourceManager, mamaSource source, const char * name) |
MAMAExpDLL mama_status | mamaSourceManager_iterateSources(mamaSourceManager sourceGroup, mamaSourceManager_sourcesIteratorCb callback, void * closure) |
typedef void(MAMACALLTYPE * mamaSourceManager_sourcesIteratorCb) (mamaSourceManager sourceManager, mamaSource source, void *closure);
MAMAExpDLL mama_status mamaSourceManager_create(
mamaSourceManager * sourceManager
)
Parameters:
Create a mamaSourceManager object.
MAMAExpDLL mama_status mamaSourceManager_destroy(
mamaSourceManager sourceManager
)
Parameters:
Destroy a mamaSourceManager object.
MAMAExpDLL mama_status mamaSourceManager_createSource(
mamaSourceManager sourceManager,
const char * name,
mamaSource * source
)
Parameters:
Return: MAMA_STATUS_OK if execution is successful.
Create a new mamaSource and add it to the manager.
MAMAExpDLL mama_status mamaSourceManager_findOrCreateSource(
mamaSourceManager sourceManager,
const char * name,
mamaSource * source
)
Parameters:
Return: MAMA_STATUS_OK if execution is successful.
Locates an existing mamaSource for the given name. If none exists creates a new mamaSource and adds to the sourceManager.
MAMAExpDLL mama_status mamaSourceManager_findSource(
mamaSourceManager sourceManager,
const char * name,
mamaSource * source
)
Parameters:
Return: MAMA_STATUS_OK if creation is successful.
Locates an existing mamaSource in the specified sourceManager with the specified string ‘name’ identifier. The value of the source argument will be set to NULL if no source was located in the sourceManager provided.
MAMAExpDLL mama_status mamaSourceManager_addSource(
mamaSourceManager sourceManager,
mamaSource source
)
Parameters:
Return: MAMA_STATUS_OK if execution is successful.
Add an existing mamaSource to the specified mamaSourceManager. The id of the source will be used instead of the name to uniquely identify the source within the manager.
MAMAExpDLL mama_status mamaSourceManager_addSourceWithName(
mamaSourceManager sourceManager,
mamaSource source,
const char * name
)
Parameters:
Return: MAMA_STATUS_OK if execution is successful.
Add an existing mamaSource to the specified mamaSourceManager using the specified name as a unique identifier.
MAMAExpDLL mama_status mamaSourceManager_iterateSources(
mamaSourceManager sourceGroup,
mamaSourceManager_sourcesIteratorCb callback,
void * closure
)
Parameters:
Return: MAMA_STATUS_OK if the function executes successfully.
Iterate over all the sources in this mamaSourceManager.
/* $Id$
*
* OpenMAMA: The open middleware agnostic messaging API
* Copyright (C) 2011 NYSE Technologies, Inc.
*
* 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.
*
* 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.
*
* 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
*/
#ifndef MamaSourceManagerH__
#define MamaSourceManagerH__
#include "mama/config.h"
#include "mama/status.h"
#include "mama/types.h"
#include "mama/quality.h"
#include "mama/log.h"
#include "mama/source.h"
#if defined (__cplusplus)
extern "C" {
#endif
typedef void (MAMACALLTYPE *mamaSourceManager_sourcesIteratorCb) (
mamaSourceManager sourceManager,
mamaSource source,
void* closure);
MAMAExpDLL
extern mama_status
mamaSourceManager_create (mamaSourceManager* sourceManager);
MAMAExpDLL
extern mama_status
mamaSourceManager_destroy (mamaSourceManager sourceManager);
MAMAExpDLL
extern mama_status
mamaSourceManager_createSource (mamaSourceManager sourceManager,
const char* name,
mamaSource* source);
MAMAExpDLL
extern mama_status
mamaSourceManager_findOrCreateSource (mamaSourceManager sourceManager,
const char* name,
mamaSource* source);
MAMAExpDLL
extern mama_status
mamaSourceManager_findSource (mamaSourceManager sourceManager,
const char* name,
mamaSource* source);
MAMAExpDLL
extern mama_status
mamaSourceManager_addSource (mamaSourceManager sourceManager,
mamaSource source);
MAMAExpDLL
extern mama_status
mamaSourceManager_addSourceWithName (mamaSourceManager sourceManager,
mamaSource source,
const char* name);
MAMAExpDLL
extern mama_status
mamaSourceManager_iterateSources (mamaSourceManager sourceGroup,
mamaSourceManager_sourcesIteratorCb callback,
void* closure);
#if defined (__cplusplus)
}
#endif
#endif
Updated on 2023-03-31 at 15:29:16 +0100