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_ProxyPushConsumer 1997-11-13 PA1 CosEventChannelAdmin_ProxyPushConsumer.xml
CosEventChannelAdmin_ProxyPushConsumer This module implements a ProxyPushConsumer interface which acts as a middleman between push supplier and the event channel.

The ProxyPushConsumer interface defines the second step for connecting push 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 ProxyPushConsumer interface can perform the following operations:

connect_push_supplier(Object, PushSupplier) -> Return Connect the push supplier to the proxy push consumer Object = #objref PushSupplier = #objref of PushSupplier type Return = ok | {'EXCEPTION', #'CosEventChannelAdmin_AlreadyConnected'{}}

This operation connects PushSupplier object to the ProxyPushConsumer object. A nil object reference can be passed to this operation. If so a channel cannot invoke the disconnect_push_supplier operation on the supplier; the supplier may be disconnected from the channel without being informed. If the ProxyPushConsumer is already connected to a PushSupplier, then the exception is raised.

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

This operation disconnects proxy push consumer from the event channel. Sends a notification about the loss of the connection to the push supplier attached to it, unless nil object reference was passed at the connection time.

push(Object, Data) -> Return Communicate event data to the consumers. Object = #objref Data = any Return = ok | {'EXCEPTION', #'CosEventComm_Disconnected'{}}

This operation sends event data to all connected consumers via the event channel. If the event communication has already been disconnected, the is raised.