当前位置: 首页>>代码示例>>Java>>正文


Java FastByteArrayInputStream类代码示例

本文整理汇总了Java中org.apache.cassandra.io.util.FastByteArrayInputStream的典型用法代码示例。如果您正苦于以下问题:Java FastByteArrayInputStream类的具体用法?Java FastByteArrayInputStream怎么用?Java FastByteArrayInputStream使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


FastByteArrayInputStream类属于org.apache.cassandra.io.util包,在下文中一共展示了FastByteArrayInputStream类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: forwardToLocalNodes

import org.apache.cassandra.io.util.FastByteArrayInputStream; //导入依赖的package包/类
/**
 * Older version (< 1.0) will not send this message at all, hence we don't
 * need to check the version of the data.
 */
private void forwardToLocalNodes(Mutation mutation, MessagingService.Verb verb, byte[] forwardBytes, InetAddress from) throws IOException
{
    DataInputStream in = new DataInputStream(new FastByteArrayInputStream(forwardBytes));
    int size = in.readInt();

    // tell the recipients who to send their ack to
    MessageOut<Mutation> message = new MessageOut<>(verb, mutation, Mutation.serializer).withParameter(Mutation.FORWARD_FROM, from.getAddress());
    // Send a message to each of the addresses on our Forward List
    for (int i = 0; i < size; i++)
    {
        InetAddress address = CompactEndpointSerializationHelper.deserialize(in);
        int id = in.readInt();
        Tracing.trace("Enqueuing forwarded write to {}", address);
        MessagingService.instance().sendOneWay(message, id, address);
    }
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:21,代码来源:MutationVerbHandler.java

示例2: forwardToLocalNodes

import org.apache.cassandra.io.util.FastByteArrayInputStream; //导入依赖的package包/类
/**
 * Older version (< 1.0) will not send this message at all, hence we don't
 * need to check the version of the data.
 */
private void forwardToLocalNodes(RowMutation rm, MessagingService.Verb verb, byte[] forwardBytes, InetAddress from) throws IOException
{
    DataInputStream in = new DataInputStream(new FastByteArrayInputStream(forwardBytes));
    int size = in.readInt();

    // tell the recipients who to send their ack to
    MessageOut<RowMutation> message = new MessageOut<RowMutation>(verb, rm, RowMutation.serializer).withParameter(RowMutation.FORWARD_FROM, from.getAddress());
    // Send a message to each of the addresses on our Forward List
    for (int i = 0; i < size; i++)
    {
        InetAddress address = CompactEndpointSerializationHelper.deserialize(in);
        int id = in.readInt();
        Tracing.trace("Enqueuing forwarded write to {}", address);
        MessagingService.instance().sendOneWay(message, id, address);
    }
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:21,代码来源:RowMutationVerbHandler.java

示例3: forwardToLocalNodes

import org.apache.cassandra.io.util.FastByteArrayInputStream; //导入依赖的package包/类
/**
 * Older version (< 1.0) will not send this message at all, hence we don't
 * need to check the version of the data.
 */
private static void forwardToLocalNodes(Mutation mutation, MessagingService.Verb verb, byte[] forwardBytes, InetAddress from) throws IOException
{
    try (DataInputStream in = new DataInputStream(new FastByteArrayInputStream(forwardBytes)))
    {
        int size = in.readInt();

        // tell the recipients who to send their ack to
        MessageOut<Mutation> message = new MessageOut<>(verb, mutation, Mutation.serializer).withParameter(Mutation.FORWARD_FROM, from.getAddress());
        // Send a message to each of the addresses on our Forward List
        for (int i = 0; i < size; i++)
        {
            InetAddress address = CompactEndpointSerializationHelper.deserialize(in);
            int id = in.readInt();
            Tracing.trace("Enqueuing forwarded write to {}", address);
            MessagingService.instance().sendOneWay(message, id, address);
        }
    }
}
 
开发者ID:scylladb,项目名称:scylla-tools-java,代码行数:23,代码来源:MutationVerbHandler.java

示例4: forwardToLocalNodes

import org.apache.cassandra.io.util.FastByteArrayInputStream; //导入依赖的package包/类
/**
 * Older version (< 1.0) will not send this message at all, hence we don't
 * need to check the version of the data.
 */
private void forwardToLocalNodes(RowMutation rm, MessagingService.Verb verb, byte[] forwardBytes, InetAddress from) throws IOException
{
    DataInputStream dis = new DataInputStream(new FastByteArrayInputStream(forwardBytes));
    int size = dis.readInt();

    // tell the recipients who to send their ack to
    MessageOut<RowMutation> message = new MessageOut<RowMutation>(verb, rm, RowMutation.serializer).withParameter(RowMutation.FORWARD_FROM, from.getAddress());
    // Send a message to each of the addresses on our Forward List
    for (int i = 0; i < size; i++)
    {
        InetAddress address = CompactEndpointSerializationHelper.deserialize(dis);
        String id = dis.readUTF();
        Tracing.trace("Enqueuing forwarded write to {}", address);
        MessagingService.instance().sendOneWay(message, id, address);
    }
}
 
开发者ID:dprguiuc,项目名称:Cassandra-Wasef,代码行数:21,代码来源:RowMutationVerbHandler.java

示例5: handleStream

import org.apache.cassandra.io.util.FastByteArrayInputStream; //导入依赖的package包/类
private void handleStream(DataInputStream input, int version) throws IOException
{
    if (version == MessagingService.current_version)
    {
        int size = input.readInt();
        byte[] headerBytes = new byte[size];
        input.readFully(headerBytes);
        stream(StreamHeader.serializer.deserialize(new DataInputStream(new FastByteArrayInputStream(headerBytes)), version), input);
    }
    else
    {
        // streaming connections are per-session and have a fixed version.  we can't do anything with a wrong-version stream connection, so drop it.
        logger.error("Received stream using protocol version {} (my version {}). Terminating connection",
                     version, MessagingService.current_version);
    }
}
 
开发者ID:dprguiuc,项目名称:Cassandra-Wasef,代码行数:17,代码来源:IncomingTcpConnection.java

示例6: read

import org.apache.cassandra.io.util.FastByteArrayInputStream; //导入依赖的package包/类
public static RangeSliceReply read(byte[] body, int version) throws IOException
{
    return serializer.deserialize(new DataInputStream(new FastByteArrayInputStream(body)), version);
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:5,代码来源:RangeSliceReply.java


注:本文中的org.apache.cassandra.io.util.FastByteArrayInputStream类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。