1997 2016 Ericsson AB, All Rights Reserved Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. The Initial Developer of the Original Code is Ericsson AB. CosEventChannelAdmin_ProxyPullConsumer 1997-11-13 PA1 CosEventChannelAdmin_ProxyPullConsumer.xml
CosEventChannelAdmin_ProxyPullConsumer This module implements a ProxyPullConsumer interface which acts as a middleman between pull supplier and the event channel.

The ProxyPullConsumer interface defines the second step for connecting pull suppliers to the event channel. A proxy consumer is similar to a normal consumer, but includes an additional method for connecting a supplier to the proxy consumer.

To get access to all definitions, e.g., exceptions, include necessary files by using:

Any object that possesses an object reference that supports the ProxyPullConsumer interface can perform the following operations:

connect_pull_supplier(Object, PullSupplier) -> Return Connect the pull supplier to the proxy pull consumer Object = #objref PullSupplier = #objref of PullSupplier type Return = ok | {'EXCEPTION', E} E = #'CosEventChannelAdmin_AlreadyConnected'{} | #'CosEventChannelAdmin_TypeError'{}

This operation connects PullSupplier object to the ProxyPullConsumer object. If a nil object reference is passed CORBA standard exception is raised. If the ProxyPullConsumer is already connected to a PullSupplier, then the exception is raised. Implementations of ProxyPullConsumers may require additional interface functionality; if these requirements are not met the exception will be raised.

disconnect_pull_consumer(Object) -> Return Disconnect the ProxyPullConsumer object from the event channel. Object = #objref Return = ok

This operation disconnects proxy pull consumer from the event channel and sends a notification about the loss of the connection to the pull supplier attached to it.