cosnotifychanneladmin_proxypullconsumer.erl

来自「OTP是开放电信平台的简称」· ERL 代码 · 共 551 行 · 第 1/2 页

ERL
551
字号
%%------------------------------------------------------------%%%% Interface TypeCode%%%%------------------------------------------------------------oe_tc(connect_any_pull_supplier) -> 	{tk_void,[{tk_objref,"IDL:omg.org/CosEventComm/PullSupplier:1.0",                             "PullSupplier"}],                 []};oe_tc(suspend_connection) -> 	{tk_void,[],[]};oe_tc(resume_connection) -> 	{tk_void,[],[]};oe_tc('_get_MyType') -> 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc('_get_MyType');oe_tc('_get_MyAdmin') -> 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc('_get_MyAdmin');oe_tc(obtain_subscription_types) -> 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc(obtain_subscription_types);oe_tc(validate_event_qos) -> 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc(validate_event_qos);oe_tc(get_qos) -> 'CosNotification_QoSAdmin':oe_tc(get_qos);oe_tc(set_qos) -> 'CosNotification_QoSAdmin':oe_tc(set_qos);oe_tc(validate_qos) -> 'CosNotification_QoSAdmin':oe_tc(validate_qos);oe_tc(add_filter) -> 'CosNotifyFilter_FilterAdmin':oe_tc(add_filter);oe_tc(remove_filter) -> 'CosNotifyFilter_FilterAdmin':oe_tc(remove_filter);oe_tc(get_filter) -> 'CosNotifyFilter_FilterAdmin':oe_tc(get_filter);oe_tc(get_all_filters) -> 'CosNotifyFilter_FilterAdmin':oe_tc(get_all_filters);oe_tc(remove_all_filters) -> 'CosNotifyFilter_FilterAdmin':oe_tc(remove_all_filters);oe_tc(offer_change) -> 'CosNotifyComm_NotifyPublish':oe_tc(offer_change);oe_tc(disconnect_pull_consumer) -> 'CosEventComm_PullConsumer':oe_tc(disconnect_pull_consumer);oe_tc(connect_pull_supplier) -> 'CosEventChannelAdmin_ProxyPullConsumer':oe_tc(connect_pull_supplier);oe_tc(_) -> undefined.oe_get_interface() -> 	[{"connect_pull_supplier", 'CosEventChannelAdmin_ProxyPullConsumer':oe_tc(connect_pull_supplier)},	{"disconnect_pull_consumer", 'CosEventComm_PullConsumer':oe_tc(disconnect_pull_consumer)},	{"offer_change", 'CosNotifyComm_NotifyPublish':oe_tc(offer_change)},	{"remove_all_filters", 'CosNotifyFilter_FilterAdmin':oe_tc(remove_all_filters)},	{"get_all_filters", 'CosNotifyFilter_FilterAdmin':oe_tc(get_all_filters)},	{"get_filter", 'CosNotifyFilter_FilterAdmin':oe_tc(get_filter)},	{"remove_filter", 'CosNotifyFilter_FilterAdmin':oe_tc(remove_filter)},	{"add_filter", 'CosNotifyFilter_FilterAdmin':oe_tc(add_filter)},	{"validate_qos", 'CosNotification_QoSAdmin':oe_tc(validate_qos)},	{"set_qos", 'CosNotification_QoSAdmin':oe_tc(set_qos)},	{"get_qos", 'CosNotification_QoSAdmin':oe_tc(get_qos)},	{"validate_event_qos", 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc(validate_event_qos)},	{"obtain_subscription_types", 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc(obtain_subscription_types)},	{"_get_MyAdmin", 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc('_get_MyAdmin')},	{"_get_MyType", 'CosNotifyChannelAdmin_ProxyConsumer':oe_tc('_get_MyType')},	{"resume_connection", oe_tc(resume_connection)},	{"suspend_connection", oe_tc(suspend_connection)},	{"connect_any_pull_supplier", oe_tc(connect_any_pull_supplier)}].%%------------------------------------------------------------%%%% Object server implementation.%%%%------------------------------------------------------------%%------------------------------------------------------------%%%% Function for fetching the interface type ID.%%%%------------------------------------------------------------typeID() ->    "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0".%%------------------------------------------------------------%%%% Object creation functions.%%%%------------------------------------------------------------oe_create() ->    corba:create(?MODULE, "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0").oe_create_link() ->    corba:create_link(?MODULE, "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0").oe_create(Env) ->    corba:create(?MODULE, "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0", Env).oe_create_link(Env) ->    corba:create_link(?MODULE, "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0", Env).oe_create(Env, RegName) ->    corba:create(?MODULE, "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0", Env, RegName).oe_create_link(Env, RegName) ->    corba:create_link(?MODULE, "IDL:omg.org/CosNotifyChannelAdmin/ProxyPullConsumer:1.0", Env, RegName).%%------------------------------------------------------------%%%% Init & terminate functions.%%%%------------------------------------------------------------init(Env) ->%% Call to implementation init    corba:handle_init('PullerConsumer_impl', Env).terminate(Reason, State) ->    corba:handle_terminate('PullerConsumer_impl', Reason, State).%%%% Operation: connect_any_pull_supplier%% %%   Returns: RetVal%%   Raises:  CosEventChannelAdmin::AlreadyConnected, CosEventChannelAdmin::TypeError%%handle_call({OE_THIS, OE_Context, connect_any_pull_supplier, [Pull_supplier]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', connect_any_pull_supplier, [Pull_supplier], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: suspend_connection%% %%   Returns: RetVal%%   Raises:  CosNotifyChannelAdmin::ConnectionAlreadyInactive, CosNotifyChannelAdmin::NotConnected%%handle_call({OE_THIS, OE_Context, suspend_connection, []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', suspend_connection, [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: resume_connection%% %%   Returns: RetVal%%   Raises:  CosNotifyChannelAdmin::ConnectionAlreadyActive, CosNotifyChannelAdmin::NotConnected%%handle_call({OE_THIS, OE_Context, resume_connection, []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', resume_connection, [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: '_get_MyType'%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, '_get_MyType', []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', '_get_MyType', [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: '_get_MyAdmin'%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, '_get_MyAdmin', []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', '_get_MyAdmin', [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: obtain_subscription_types%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, obtain_subscription_types, [Mode]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', obtain_subscription_types, [Mode], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: validate_event_qos%% %%   Returns: RetVal, Available_qos%%   Raises:  CosNotification::UnsupportedQoS%%handle_call({OE_THIS, OE_Context, validate_event_qos, [Required_qos]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', validate_event_qos, [Required_qos], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: get_qos%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, get_qos, []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', get_qos, [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: set_qos%% %%   Returns: RetVal%%   Raises:  CosNotification::UnsupportedQoS%%handle_call({OE_THIS, OE_Context, set_qos, [Qos]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', set_qos, [Qos], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: validate_qos%% %%   Returns: RetVal, Available_qos%%   Raises:  CosNotification::UnsupportedQoS%%handle_call({OE_THIS, OE_Context, validate_qos, [Required_qos]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', validate_qos, [Required_qos], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: add_filter%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, add_filter, [New_filter]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', add_filter, [New_filter], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: remove_filter%% %%   Returns: RetVal%%   Raises:  CosNotifyFilter::FilterNotFound%%handle_call({OE_THIS, OE_Context, remove_filter, [Filter]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', remove_filter, [Filter], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: get_filter%% %%   Returns: RetVal%%   Raises:  CosNotifyFilter::FilterNotFound%%handle_call({OE_THIS, OE_Context, get_filter, [Filter]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', get_filter, [Filter], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: get_all_filters%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, get_all_filters, []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', get_all_filters, [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: remove_all_filters%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, remove_all_filters, []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', remove_all_filters, [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: offer_change%% %%   Returns: RetVal%%   Raises:  CosNotifyComm::InvalidEventType%%handle_call({OE_THIS, OE_Context, offer_change, [Added, Removed]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', offer_change, [Added, Removed], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: disconnect_pull_consumer%% %%   Returns: RetVal%%handle_call({OE_THIS, OE_Context, disconnect_pull_consumer, []}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', disconnect_pull_consumer, [], OE_State, OE_Context, OE_THIS, OE_From);%%%% Operation: connect_pull_supplier%% %%   Returns: RetVal%%   Raises:  CosEventChannelAdmin::AlreadyConnected, CosEventChannelAdmin::TypeError%%handle_call({OE_THIS, OE_Context, connect_pull_supplier, [Pull_supplier]}, OE_From, OE_State) ->  corba:handle_call('PullerConsumer_impl', connect_pull_supplier, [Pull_supplier], OE_State, OE_Context, OE_THIS, OE_From);%%%% Standard gen_server call handle%%handle_call(stop, _, State) ->    {stop, normal, ok, State};handle_call(_, _, State) ->    {reply, catch corba:raise(#'BAD_OPERATION'{minor=1163001857, completion_status='COMPLETED_NO'}), State}.%%%% Standard gen_server cast handle%%handle_cast(stop, State) ->    {stop, normal, State};handle_cast(_, State) ->    {noreply, State}.%%%% Standard gen_server handles%%handle_info(Info, State) ->    corba:handle_info('PullerConsumer_impl', Info, State).code_change(OldVsn, State, Extra) ->    corba:handle_code_change('PullerConsumer_impl', OldVsn, State, Extra).

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?