protected void suspendLocally() throws SuspendException
{
if (!handler.isOnline())
{
throw new SuspendException("Can't suspend index, while reindexing in progeress.");
}
if (isSuspended)
{
throw new SuspendException("Component already suspended.");
}
if (handler instanceof Suspendable)
{
((Suspendable)handler).suspend();