/* * Copyright (c) 2009-2012, 2016 Eike Stepper (Berlin, Germany) and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eike Stepper - initial API and implementation */ package org.eclipse.emf.cdo.server.internal.net4j.protocol; import org.eclipse.emf.cdo.common.protocol.CDODataInput; import org.eclipse.emf.cdo.common.protocol.CDODataOutput; import org.eclipse.emf.cdo.common.protocol.CDOProtocolConstants; import org.eclipse.emf.cdo.server.internal.net4j.bundle.OM; import org.eclipse.emf.cdo.spi.server.InternalSession; import org.eclipse.net4j.util.om.trace.ContextTracer; import java.io.IOException; /** * @author Eike Stepper */ public class UnsubscribeRemoteSessionsIndication extends CDOServerReadIndication { private static final ContextTracer TRACER = new ContextTracer(OM.DEBUG_PROTOCOL, UnsubscribeRemoteSessionsIndication.class); public UnsubscribeRemoteSessionsIndication(CDOServerProtocol protocol) { super(protocol, CDOProtocolConstants.SIGNAL_UNSUBSCRIBE_REMOTE_SESSIONS); } @Override protected void indicating(CDODataInput in) throws IOException { if (TRACER.isEnabled()) { TRACER.trace("Unsubscribing"); //$NON-NLS-1$ } InternalSession localSession = getSession(); localSession.setSubscribed(false); } @Override protected void responding(CDODataOutput out) throws IOException { out.writeBoolean(true); } }