IceGrid.RandomLoadBalancingPolicyHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icegrid-compat Show documentation
Show all versions of icegrid-compat Show documentation
Locate, deploy, and manage Ice servers
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.3
//
//
//
// Generated from file `Descriptor.ice'
//
// Warning: do not edit this file.
//
//
//
package IceGrid;
public final class RandomLoadBalancingPolicyHolder extends Ice.ObjectHolderBase
{
public
RandomLoadBalancingPolicyHolder()
{
}
public
RandomLoadBalancingPolicyHolder(RandomLoadBalancingPolicy value)
{
this.value = value;
}
public void
valueReady(Ice.Object v)
{
if(v == null || v instanceof RandomLoadBalancingPolicy)
{
value = (RandomLoadBalancingPolicy)v;
}
else
{
IceInternal.Ex.throwUOE(type(), v);
}
}
public String
type()
{
return RandomLoadBalancingPolicy.ice_staticId();
}
}