Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7ec26b73c859eb80fd9d83ac0f569d26c297d74b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2020 Eike Stepper (Loehne, 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.net4j.tests.signal;

import org.eclipse.net4j.signal.IndicationWithResponse;
import org.eclipse.net4j.util.io.ExtendedDataInputStream;
import org.eclipse.net4j.util.io.ExtendedDataOutputStream;

/**
 * @author Eike Stepper
 */
public class PartialReadIndication extends IndicationWithResponse
{
  public PartialReadIndication(TestSignalProtocol protocol)
  {
    super(protocol, TestSignalProtocol.SIGNAL_INT);
  }

  @Override
  protected void indicating(ExtendedDataInputStream in) throws Exception
  {
    int data = in.readInt();
    if (data != PartialReadRequest.DATA)
    {
      throw new Error("Read " + data + " instead of " + PartialReadRequest.DATA);
    }

    // Do not read the remaining 2 bytes here that PartialReadRequest has sent!
  }

  @Override
  protected void responding(ExtendedDataOutputStream out) throws Exception
  {
    out.writeBoolean(true);
  }
}

Back to the top