Examples of QpidActivationSpec


Examples of org.apache.qpid.ra.inflow.QpidActivationSpec

public class QpidActivationSpecTest extends TestCase
{

    public void testActivationSpecBasicSerialization() throws Exception
    {
        QpidActivationSpec spec = new QpidActivationSpec();
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(out);
        oos.writeObject(spec);
        oos.close();
        assertTrue(out.toByteArray().length > 0);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.