Search in sources :

Example 6 with BrokerId

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

the class NetworkBridgeFilterMarshaller 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);
    NetworkBridgeFilter info = (NetworkBridgeFilter) o;
    info.setNetworkTTL(dataIn.readInt());
    info.setNetworkBrokerId((BrokerId) tightUnmarsalCachedObject(wireFormat, dataIn, bs));
}
Also used : NetworkBridgeFilter(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.NetworkBridgeFilter)

Example 7 with BrokerId

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

the class NetworkBridgeFilterMarshaller 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);
    NetworkBridgeFilter info = (NetworkBridgeFilter) o;
    info.setNetworkTTL(dataIn.readInt());
    info.setNetworkBrokerId((BrokerId) looseUnmarsalCachedObject(wireFormat, dataIn));
}
Also used : NetworkBridgeFilter(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.NetworkBridgeFilter)

Example 8 with BrokerId

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

the class ProducerInfoMarshaller 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);
    ProducerInfo info = (ProducerInfo) o;
    info.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setDestination((ActiveMQDestination) looseUnmarsalCachedObject(wireFormat, dataIn));
    if (dataIn.readBoolean()) {
        short size = dataIn.readShort();
        BrokerId[] value = new BrokerId[size];
        for (int i = 0; i < size; i++) {
            value[i] = (BrokerId) looseUnmarsalNestedObject(wireFormat, dataIn);
        }
        info.setBrokerPath(value);
    } else {
        info.setBrokerPath(null);
    }
}
Also used : ProducerInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ProducerInfo) BrokerId(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.BrokerId)

Example 9 with BrokerId

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

the class BrokerIdMarshaller 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);
    BrokerId info = (BrokerId) o;
    info.setValue(looseUnmarshalString(dataIn));
}
Also used : BrokerId(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.BrokerId)

Example 10 with BrokerId

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

the class BrokerIdMarshaller method tightMarshal1.

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

Aggregations

BrokerId (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.BrokerId)15 BrokerInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.BrokerInfo)2 ConnectionInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ConnectionInfo)2 ConsumerInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ConsumerInfo)2 DestinationInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.DestinationInfo)2 Message (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.Message)2 NetworkBridgeFilter (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.NetworkBridgeFilter)2 ProducerInfo (io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ProducerInfo)2 DefaultKubernetesClient (io.fabric8.kubernetes.client.DefaultKubernetesClient)1 KubernetesClient (io.fabric8.kubernetes.client.KubernetesClient)1 KafkaCluster (io.strimzi.test.KafkaCluster)1 Test (org.junit.Test)1