1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.transport.tcp.issues; 8 9 import org.mule.transport.tcp.integration.AbstractStreamingCapacityTestCase; 10 import org.mule.transport.tcp.integration.BigInputStream; 11 12 public class InputStreamSource 13 { 14 15 public static final long SIZE = 10 * AbstractStreamingCapacityTestCase.ONE_MB; 16 17 // whether this is declared to return Object or InputStream makes no difference 18 public Object doSomething(Object request) 19 { 20 return new BigInputStream(SIZE, 10); 21 } 22 23 }