00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef SANDESHA2_SENDER_H
00018 #define SANDESHA2_SENDER_H
00019
00025 #include <axutil_allocator.h>
00026 #include <axutil_env.h>
00027 #include <axutil_error.h>
00028 #include <axutil_string.h>
00029 #include <axutil_utils.h>
00030 #include <axis2_conf_ctx.h>
00031
00032 #ifdef __cplusplus
00033 extern "C"
00034 {
00035 #endif
00036
00037 typedef struct sandesha2_sender_t sandesha2_sender_t;
00038
00039 AXIS2_EXTERN sandesha2_sender_t * AXIS2_CALL
00040 sandesha2_sender_create(
00041 const axutil_env_t *env);
00042
00050 AXIS2_EXTERN axis2_status_t AXIS2_CALL
00051 sandesha2_sender_free_void_arg(
00052 void *sender,
00053 const axutil_env_t *env);
00054
00055 axis2_status_t AXIS2_CALL
00056 sandesha2_sender_free(
00057 sandesha2_sender_t *sender,
00058 const axutil_env_t *env);
00059
00060 axis2_status_t AXIS2_CALL
00061 sandesha2_sender_stop_sender_for_seq(
00062 sandesha2_sender_t *sender,
00063 const axutil_env_t *env,
00064 axis2_char_t *seq_id);
00065
00066 axis2_status_t AXIS2_CALL
00067 sandesha2_sender_stop_sending (
00068 sandesha2_sender_t *sender,
00069 const axutil_env_t *env);
00070
00071 axis2_bool_t AXIS2_CALL
00072 sandesha2_sender_is_sender_started(
00073 sandesha2_sender_t *sender,
00074 const axutil_env_t *env);
00075
00076 axis2_status_t AXIS2_CALL
00077 sandesha2_sender_run_for_seq
00078 (sandesha2_sender_t *sender,
00079 const axutil_env_t *env,
00080 axis2_conf_ctx_t *conf_ctx,
00081 axis2_char_t *seq_id,
00082 const axis2_bool_t persistent);
00083
00084 axis2_status_t AXIS2_CALL
00085 sandesha2_sender_run (
00086 sandesha2_sender_t *sender,
00087 const axutil_env_t *env);
00088
00090 #ifdef __cplusplus
00091 }
00092 #endif
00093 #endif