cosnotifychanneladmin_proxysupplier.erl
来自「OTP是开放电信平台的简称」· ERL 代码 · 共 539 行 · 第 1/2 页
ERL
539 行
%%------------------------------------------------------------%%%% Implementation stub file%% %% Target: CosNotifyChannelAdmin_ProxySupplier%% Source: /ldisk/daily_build/otp_prebuild_r11b.2007-06-11_19/otp_src_R11B-5/lib/cosNotification/src/CosNotifyChannelAdmin.idl%% IC vsn: 4.2.13%% %% This file is automatically generated. DO NOT EDIT IT.%%%%-------------------------------------------------------------module('CosNotifyChannelAdmin_ProxySupplier').-ic_compiled("4_2_13").%% Interface functions-export(['_get_MyType'/1, '_get_MyType'/2, '_get_MyAdmin'/1]).-export(['_get_MyAdmin'/2, '_get_priority_filter'/1, '_get_priority_filter'/2]).-export(['_set_priority_filter'/2, '_set_priority_filter'/3, '_get_lifetime_filter'/1]).-export(['_get_lifetime_filter'/2, '_set_lifetime_filter'/2, '_set_lifetime_filter'/3]).-export([obtain_offered_types/2, obtain_offered_types/3, validate_event_qos/2]).-export([validate_event_qos/3]).%% Exports from "CosNotification::QoSAdmin"-export([get_qos/1, get_qos/2, set_qos/2]).-export([set_qos/3, validate_qos/2, validate_qos/3]).%% Exports from "CosNotifyFilter::FilterAdmin"-export([add_filter/2, add_filter/3, remove_filter/2]).-export([remove_filter/3, get_filter/2, get_filter/3]).-export([get_all_filters/1, get_all_filters/2, remove_all_filters/1]).-export([remove_all_filters/2]).%% Type identification function-export([typeID/0]).%% Used to start server-export([oe_create/0, oe_create_link/0, oe_create/1]).-export([oe_create_link/1, oe_create/2, oe_create_link/2]).%% TypeCode Functions and inheritance-export([oe_tc/1, oe_is_a/1, oe_get_interface/0]).%% gen server export stuff-behaviour(gen_server).-export([init/1, terminate/2, handle_call/3]).-export([handle_cast/2, handle_info/2, code_change/3]).-include_lib("orber/include/corba.hrl").%%------------------------------------------------------------%%%% Object interface functions.%%%%------------------------------------------------------------%%%% Operation: '_get_MyType'%% %% Returns: RetVal%%'_get_MyType'(OE_THIS) -> corba:call(OE_THIS, '_get_MyType', [], ?MODULE).'_get_MyType'(OE_THIS, OE_Options) -> corba:call(OE_THIS, '_get_MyType', [], ?MODULE, OE_Options).%%%% Operation: '_get_MyAdmin'%% %% Returns: RetVal%%'_get_MyAdmin'(OE_THIS) -> corba:call(OE_THIS, '_get_MyAdmin', [], ?MODULE).'_get_MyAdmin'(OE_THIS, OE_Options) -> corba:call(OE_THIS, '_get_MyAdmin', [], ?MODULE, OE_Options).%%%% Operation: '_get_priority_filter'%% %% Returns: RetVal%%'_get_priority_filter'(OE_THIS) -> corba:call(OE_THIS, '_get_priority_filter', [], ?MODULE).'_get_priority_filter'(OE_THIS, OE_Options) -> corba:call(OE_THIS, '_get_priority_filter', [], ?MODULE, OE_Options).%%%% Operation: '_set_priority_filter'%% %% Returns: RetVal%%'_set_priority_filter'(OE_THIS, OE_Value) -> corba:call(OE_THIS, '_set_priority_filter', [OE_Value], ?MODULE).'_set_priority_filter'(OE_THIS, OE_Options, OE_Value) -> corba:call(OE_THIS, '_set_priority_filter', [OE_Value], ?MODULE, OE_Options).%%%% Operation: '_get_lifetime_filter'%% %% Returns: RetVal%%'_get_lifetime_filter'(OE_THIS) -> corba:call(OE_THIS, '_get_lifetime_filter', [], ?MODULE).'_get_lifetime_filter'(OE_THIS, OE_Options) -> corba:call(OE_THIS, '_get_lifetime_filter', [], ?MODULE, OE_Options).%%%% Operation: '_set_lifetime_filter'%% %% Returns: RetVal%%'_set_lifetime_filter'(OE_THIS, OE_Value) -> corba:call(OE_THIS, '_set_lifetime_filter', [OE_Value], ?MODULE).'_set_lifetime_filter'(OE_THIS, OE_Options, OE_Value) -> corba:call(OE_THIS, '_set_lifetime_filter', [OE_Value], ?MODULE, OE_Options).%%%% Operation: obtain_offered_types%% %% Returns: RetVal%%obtain_offered_types(OE_THIS, Mode) -> corba:call(OE_THIS, obtain_offered_types, [Mode], ?MODULE).obtain_offered_types(OE_THIS, OE_Options, Mode) -> corba:call(OE_THIS, obtain_offered_types, [Mode], ?MODULE, OE_Options).%%%% Operation: validate_event_qos%% %% Returns: RetVal, Available_qos%% Raises: CosNotification::UnsupportedQoS%%validate_event_qos(OE_THIS, Required_qos) -> corba:call(OE_THIS, validate_event_qos, [Required_qos], ?MODULE).validate_event_qos(OE_THIS, OE_Options, Required_qos) -> corba:call(OE_THIS, validate_event_qos, [Required_qos], ?MODULE, OE_Options).%%%% Operation: get_qos%% %% Returns: RetVal%%get_qos(OE_THIS) -> corba:call(OE_THIS, get_qos, [], ?MODULE).get_qos(OE_THIS, OE_Options) -> corba:call(OE_THIS, get_qos, [], ?MODULE, OE_Options).%%%% Operation: set_qos%% %% Returns: RetVal%% Raises: CosNotification::UnsupportedQoS%%set_qos(OE_THIS, Qos) -> corba:call(OE_THIS, set_qos, [Qos], ?MODULE).set_qos(OE_THIS, OE_Options, Qos) -> corba:call(OE_THIS, set_qos, [Qos], ?MODULE, OE_Options).%%%% Operation: validate_qos%% %% Returns: RetVal, Available_qos%% Raises: CosNotification::UnsupportedQoS%%validate_qos(OE_THIS, Required_qos) -> corba:call(OE_THIS, validate_qos, [Required_qos], ?MODULE).validate_qos(OE_THIS, OE_Options, Required_qos) -> corba:call(OE_THIS, validate_qos, [Required_qos], ?MODULE, OE_Options).%%%% Operation: add_filter%% %% Returns: RetVal%%add_filter(OE_THIS, New_filter) -> corba:call(OE_THIS, add_filter, [New_filter], ?MODULE).add_filter(OE_THIS, OE_Options, New_filter) -> corba:call(OE_THIS, add_filter, [New_filter], ?MODULE, OE_Options).%%%% Operation: remove_filter%% %% Returns: RetVal%% Raises: CosNotifyFilter::FilterNotFound%%remove_filter(OE_THIS, Filter) -> corba:call(OE_THIS, remove_filter, [Filter], ?MODULE).remove_filter(OE_THIS, OE_Options, Filter) -> corba:call(OE_THIS, remove_filter, [Filter], ?MODULE, OE_Options).%%%% Operation: get_filter%% %% Returns: RetVal%% Raises: CosNotifyFilter::FilterNotFound%%get_filter(OE_THIS, Filter) -> corba:call(OE_THIS, get_filter, [Filter], ?MODULE).get_filter(OE_THIS, OE_Options, Filter) -> corba:call(OE_THIS, get_filter, [Filter], ?MODULE, OE_Options).%%%% Operation: get_all_filters%% %% Returns: RetVal%%get_all_filters(OE_THIS) -> corba:call(OE_THIS, get_all_filters, [], ?MODULE).get_all_filters(OE_THIS, OE_Options) -> corba:call(OE_THIS, get_all_filters, [], ?MODULE, OE_Options).%%%% Operation: remove_all_filters%% %% Returns: RetVal%%remove_all_filters(OE_THIS) -> corba:call(OE_THIS, remove_all_filters, [], ?MODULE).remove_all_filters(OE_THIS, OE_Options) -> corba:call(OE_THIS, remove_all_filters, [], ?MODULE, OE_Options).%%------------------------------------------------------------%%%% Inherited Interfaces%%%%------------------------------------------------------------oe_is_a("IDL:omg.org/CosNotifyChannelAdmin/ProxySupplier:1.0") -> true;oe_is_a("IDL:omg.org/CosNotification/QoSAdmin:1.0") -> true;oe_is_a("IDL:omg.org/CosNotifyFilter/FilterAdmin:1.0") -> true;oe_is_a(_) -> false.%%------------------------------------------------------------%%%% Interface TypeCode%%%%------------------------------------------------------------oe_tc('_get_MyType') -> {{tk_enum,"IDL:omg.org/CosNotifyChannelAdmin/ProxyType:1.0", "ProxyType", ["PUSH_ANY", "PULL_ANY", "PUSH_STRUCTURED", "PULL_STRUCTURED", "PUSH_SEQUENCE", "PULL_SEQUENCE"]}, [], []};oe_tc('_get_MyAdmin') -> {{tk_objref,"IDL:omg.org/CosNotifyChannelAdmin/ConsumerAdmin:1.0", "ConsumerAdmin"}, [], []};oe_tc('_get_priority_filter') -> {{tk_objref,"IDL:omg.org/CosNotifyFilter/MappingFilter:1.0", "MappingFilter"}, [], []};oe_tc('_set_priority_filter') -> {tk_void,[{tk_objref,"IDL:omg.org/CosNotifyFilter/MappingFilter:1.0", "MappingFilter"}], []};oe_tc('_get_lifetime_filter') -> {{tk_objref,"IDL:omg.org/CosNotifyFilter/MappingFilter:1.0", "MappingFilter"}, [], []};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?