Search in sources :

Example 1 with SubscriptionInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo in project fabric8 by jboss-fuse.

the class SubscriptionInfoMarshaller method tightUnmarshal.

/**
 * Un-marshal an object instance from the data input stream
 *
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void tightUnmarshal(OpenWireFormat wireFormat, Object o, DataByteArrayInputStream dataIn, BooleanStream bs) throws IOException {
    super.tightUnmarshal(wireFormat, o, dataIn, bs);
    SubscriptionInfo info = (SubscriptionInfo) o;
    info.setClientId(tightUnmarshalString(dataIn, bs));
    info.setDestination((ActiveMQDestination) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
    info.setSelector(tightUnmarshalString(dataIn, bs));
    info.setSubscriptionName(tightUnmarshalString(dataIn, bs));
}
Also used : SubscriptionInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo)

Example 2 with SubscriptionInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo in project fabric8 by jboss-fuse.

the class SubscriptionInfoMarshaller method looseUnmarshal.

/**
 * Un-marshal an object instance from the data input stream
 *
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataByteArrayInputStream dataIn) throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);
    SubscriptionInfo info = (SubscriptionInfo) o;
    info.setClientId(looseUnmarshalString(dataIn));
    info.setDestination((ActiveMQDestination) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setSelector(looseUnmarshalString(dataIn));
    info.setSubscriptionName(looseUnmarshalString(dataIn));
}
Also used : SubscriptionInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo)

Example 3 with SubscriptionInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo in project fabric8 by jboss-fuse.

the class SubscriptionInfoMarshaller method tightMarshal2.

/**
 * Write a object instance to data output stream
 *
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataByteArrayOutputStream dataOut, BooleanStream bs) throws IOException {
    super.tightMarshal2(wireFormat, o, dataOut, bs);
    SubscriptionInfo info = (SubscriptionInfo) o;
    tightMarshalString2(info.getClientId(), dataOut, bs);
    tightMarshalCachedObject2(wireFormat, (DataStructure) info.getDestination(), dataOut, bs);
    tightMarshalString2(info.getSelector(), dataOut, bs);
    tightMarshalString2(info.getSubscriptionName(), dataOut, bs);
}
Also used : SubscriptionInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo)

Example 4 with SubscriptionInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo in project fabric8 by jboss-fuse.

the class SubscriptionInfoMarshaller method tightMarshal1.

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
    SubscriptionInfo info = (SubscriptionInfo) o;
    int rc = super.tightMarshal1(wireFormat, o, bs);
    rc += tightMarshalString1(info.getClientId(), bs);
    rc += tightMarshalCachedObject1(wireFormat, (DataStructure) info.getDestination(), bs);
    rc += tightMarshalString1(info.getSelector(), bs);
    rc += tightMarshalString1(info.getSubscriptionName(), bs);
    return rc + 0;
}
Also used : DataStructure(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.DataStructure) SubscriptionInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo)

Example 5 with SubscriptionInfo

use of io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo in project fabric8 by jboss-fuse.

the class SubscriptionInfoMarshaller method looseMarshal.

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public void looseMarshal(OpenWireFormat wireFormat, Object o, DataByteArrayOutputStream dataOut) throws IOException {
    SubscriptionInfo info = (SubscriptionInfo) o;
    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalCachedObject(wireFormat, (DataStructure) info.getDestination(), dataOut);
    looseMarshalString(info.getSelector(), dataOut);
    looseMarshalString(info.getSubscriptionName(), dataOut);
}
Also used : SubscriptionInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo)

Aggregations

SubscriptionInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.SubscriptionInfo)5 DataStructure (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.DataStructure)1