IceStorm._TopicTie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icestorm-compat Show documentation
Show all versions of icestorm-compat Show documentation
Publish-subscribe event distribution service
// **********************************************************************
//
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//
// Ice version 3.7.1
//
//
//
// Generated from file `IceStorm.ice'
//
// Warning: do not edit this file.
//
//
//
package IceStorm;
public class _TopicTie extends _TopicDisp implements Ice.TieBase
{
public _TopicTie()
{
}
public _TopicTie(_TopicOperations delegate)
{
_ice_delegate = delegate;
}
public java.lang.Object ice_delegate()
{
return _ice_delegate;
}
public void ice_delegate(java.lang.Object delegate)
{
_ice_delegate = (_TopicOperations)delegate;
}
public boolean equals(java.lang.Object rhs)
{
if(this == rhs)
{
return true;
}
if(!(rhs instanceof _TopicTie))
{
return false;
}
return _ice_delegate.equals(((_TopicTie)rhs)._ice_delegate);
}
public int hashCode()
{
return _ice_delegate.hashCode();
}
public void destroy(Ice.Current current)
{
_ice_delegate.destroy(current);
}
public LinkInfo[] getLinkInfoSeq(Ice.Current current)
{
return _ice_delegate.getLinkInfoSeq(current);
}
public String getName(Ice.Current current)
{
return _ice_delegate.getName(current);
}
public Ice.ObjectPrx getNonReplicatedPublisher(Ice.Current current)
{
return _ice_delegate.getNonReplicatedPublisher(current);
}
public Ice.ObjectPrx getPublisher(Ice.Current current)
{
return _ice_delegate.getPublisher(current);
}
public Ice.Identity[] getSubscribers(Ice.Current current)
{
return _ice_delegate.getSubscribers(current);
}
public void link(TopicPrx linkTo, int cost, Ice.Current current)
throws LinkExists
{
_ice_delegate.link(linkTo, cost, current);
}
public Ice.ObjectPrx subscribeAndGetPublisher(java.util.Map theQoS, Ice.ObjectPrx subscriber, Ice.Current current)
throws AlreadySubscribed,
BadQoS,
InvalidSubscriber
{
return _ice_delegate.subscribeAndGetPublisher(theQoS, subscriber, current);
}
public void unlink(TopicPrx linkTo, Ice.Current current)
throws NoSuchLink
{
_ice_delegate.unlink(linkTo, current);
}
public void unsubscribe(Ice.ObjectPrx subscriber, Ice.Current current)
{
_ice_delegate.unsubscribe(subscriber, current);
}
private _TopicOperations _ice_delegate;
public static final long serialVersionUID = -677914521587050140L;
}