- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.infinispan.commons.marshall.WrappedByteArray.<init>()
方法的一些代码示例,展示了WrappedByteArray.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WrappedByteArray.<init>()
方法的具体详情如下:
包路径:org.infinispan.commons.marshall.WrappedByteArray
类名称:WrappedByteArray
方法名:<init>
暂无
代码示例来源:origin: org.infinispan/infinispan-commons
@Override
public Object wrap(Object obj) {
if (obj instanceof byte[]) return new WrappedByteArray((byte[]) obj);
return obj;
}
代码示例来源:origin: org.infinispan/infinispan-commons
@Override
public WrappedByteArray readObject(ObjectInput input) throws IOException {
byte[] bytes = MarshallUtil.unmarshallByteArray(input);
boolean hasHashCode = input.readBoolean();
if (hasHashCode) {
return new WrappedByteArray(bytes, input.readInt());
} else {
return new WrappedByteArray(bytes);
}
}
}
代码示例来源:origin: org.infinispan/infinispan-core
private WrappedByteArray toUserObject(byte[] bytes) {
return new WrappedByteArray(bytes);
}
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
boolean removeClientListener(byte[] listenerId, Cache cache) {
Object sender = eventSenders.get(new WrappedByteArray(listenerId));
if (sender != null) {
cache.removeListener(sender);
return true;
} else return false;
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
void removeEntry(HotRodHeader header, Subject subject, byte[] key, byte[] value) {
log.trace("Call removeEntry");
WrappedByteArray keyWrappped = new WrappedByteArray(key);
WrappedByteArray valueWrapped = new WrappedByteArray(value);
server.multimap(header, subject).remove(keyWrappped, valueWrapped).whenComplete(handleBoolean(header));
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
void containsEntry(HotRodHeader header, Subject subject, byte[] key, byte[] value) {
log.trace("Call containsEntry");
WrappedByteArray keyWrappped = new WrappedByteArray(key);
WrappedByteArray valueWrapped = new WrappedByteArray(value);
server.multimap(header, subject).containsEntry(keyWrappped, valueWrapped).whenComplete(handleBoolean(header));
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
TestCounterNotificationManager(HotRodClient client) {
this.client = client;
byte[] listenerId = new byte[16];
ThreadLocalRandom.current().nextBytes(listenerId);
this.listenerId = new WrappedByteArray(listenerId);
userListenerList = new ConcurrentHashMap<>();
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
void get(HotRodHeader header, Subject subject, byte[] key) {
if (trace) {
log.trace("Call get");
}
WrappedByteArray keyWrappped = new WrappedByteArray(key);
server.multimap(header, subject).get(keyWrappped).whenComplete(
(result, throwable) -> handleGet(header, result, throwable));
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
void removeKey(HotRodHeader header, Subject subject, byte[] key) {
if (trace) {
log.trace("Call removeKey");
}
WrappedByteArray keyWrappped = new WrappedByteArray(key);
server.multimap(header, subject).remove(keyWrappped).whenComplete(handleBoolean(header));
}
代码示例来源:origin: org.infinispan.server/infinispan-server-testsuite
private String convertToStrWrappedArray(String keyAsString) {
WrappedByteArray wrappedByteArray = new WrappedByteArray(keyAsString.getBytes(UTF_8));
return STRING_MAPPER.getStringMapping(wrappedByteArray);
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
void containsKey(HotRodHeader header, Subject subject, byte[] key) {
log.trace("Call containsKey");
WrappedByteArray keyWrappped = new WrappedByteArray(key);
server.multimap(header, subject).containsKey(keyWrappped).whenComplete(handleBoolean(header));
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
void getWithMetadata(HotRodHeader header, Subject subject, byte[] key) {
if (trace) {
log.trace("Call getWithMetadata");
}
WrappedByteArray keyWrappped = new WrappedByteArray(key);
server.multimap(header, subject).getEntry(keyWrappped).whenComplete((entry, throwable) -> handleGetWithMetadata(header, entry, throwable));
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
private ContextValue performGet(byte[] key) {
TestGetWithMetadataResponse response = client.getWithMetadata(key, 0);
ContextValue contextValue = response.data
.map(bytes -> new ContextValue(response.dataVersion, (byte) 0, bytes))
.orElseGet(RemoteTransaction::nonExisting);
txContext.put(new WrappedByteArray(key), contextValue);
return contextValue;
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
private byte[] get(byte[] key) {
log.debugf("GET[%s] (%s)", xid, printArray(key, true));
ContextValue value = txContext.get(new WrappedByteArray(key));
if (value != null) {
return value.value;
}
return performGet(key).value;
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
public TestCounterEventResponse(byte version, long messageId, HotRodOperation operation, ByteBuf buffer) {
super(version, messageId, "", (byte) 0, operation, OperationStatus.Success, 0, null);
counterName = ExtendedByteBuf.readString(buffer);
listenerId = new WrappedByteArray(ExtendedByteBuf.readRangedBytes(buffer));
byte counterState = buffer.readByte();
counterEvent = new CounterEventImpl(buffer.readLong(), decodeOldState(counterState), buffer.readLong(),
decodeNewState(counterState));
}
代码示例来源:origin: org.infinispan/infinispan-core
public void testEqualsAndHashCode() throws Exception {
StreamingMarshaller marshaller = extractGlobalMarshaller(cache(0).getCacheManager());
Pojo pojo = new Pojo();
WrappedBytes wb = new WrappedByteArray(marshaller.objectToByteBuffer(pojo));
WrappedBytes wb2 = new WrappedByteArray(marshaller.objectToByteBuffer(pojo));
assertTrue(wb2.hashCode() == wb.hashCode());
assertEquals(wb, wb2);
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
public void testMarshallingCommandWithBigByteArrayKey() throws Exception {
byte[] cacheKey = getBigByteArray();
ClusteredGetCommand command =
new ClusteredGetCommand(new WrappedByteArray(cacheKey), ByteString.fromString("c"), 0, EnumUtil.EMPTY_BIT_SET);
byte[] bytes = marshaller.objectToByteBuffer(command);
ClusteredGetCommand readCommand = (ClusteredGetCommand) marshaller.objectFromByteBuffer(bytes);
assertEquals(readCommand, command);
}
代码示例来源:origin: org.infinispan/infinispan-server-hotrod
public void set(byte[] key, byte[] value, int lifespan, int maxIdle) {
log.debugf("SET[%s] (%s, %s, %s, &s)", xid, printArray(key, true), printArray(value, true), lifespan, maxIdle);
ContextValue contextValue = txContext.computeIfAbsent(new WrappedByteArray(key), RemoteTransaction::notRead);
contextValue.set(value, lifespan, maxIdle);
}
代码示例来源:origin: org.infinispan/infinispan-core
private void putIntoStore(String key, String value) throws Exception {
Cache<String, String> testCache = cacheManager.getCache(CACHE_NAME);
CacheWriter<String, String> writer = TestingUtil.getFirstWriter(testCache);
Object writerKey = key;
Object writerValue = value;
if (storage == StorageType.OFF_HEAP) {
GlobalMarshaller gm = TestingUtil.extractGlobalMarshaller(testCache.getCacheManager());
writerKey = new WrappedByteArray(gm.objectToByteBuffer(key));
writerValue = new WrappedByteArray(gm.objectToByteBuffer(value));
}
MarshalledEntry entry = new MarshalledEntryImpl(writerKey, writerValue, null, null);
writer.write(entry);
}
代码示例来源:origin: org.infinispan/infinispan-core
private boolean isEntryInStore(String key) throws Exception {
Cache<String, String> testCache = cacheManager.getCache(CACHE_NAME);
CacheLoader<String, String> loader = TestingUtil.getFirstLoader(testCache);
Object loaderKey = key;
if (storage == StorageType.OFF_HEAP) {
GlobalMarshaller gm = TestingUtil.extractGlobalMarshaller(testCache.getCacheManager());
loaderKey = new WrappedByteArray(gm.objectToByteBuffer(key));
}
return loader.contains(loaderKey);
}
在编程环境中是哪一个?有区别吗?我已经看到了这两种方式,我不想在我的代码中拼错它。 最佳答案 编码(marshal)是工作图 block ;例如,消防编码(marshal)或美国编码(marshal)
我有以下结构: [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)] public struct WAVEHDR { in
我找不到以下问题的明确答案:如果一个 COM 类是线程安全的,即它被标记为 Both 或 Free,我真的需要编码它的对象接口(interface)以将它传递给另一个线程吗?相同的过程?我不问两个线程
在编译 C# ASP.NET 应用程序时,我从 Visual Studio 2008 中收到奇怪的警告。谁能告诉我这个警告的含义(如果可能的话,用几个音节的词)? At least one of th
TL;DR:MongoDB 驱动程序是否提供了编码和解码文档单个字段的功能? 这是一个非常简单的问题,但这里有一些上下文: 我有一个工作人员负责在 2 个独立的数据库之间同步数据。当它接收到事件消息时
是否可以在使用自定义编码(marshal)拆收器的结构上使用 Marshal.SizeOf()? 例如: struct Abcde { public int test1; [MarshalAs
我有一张 map :[]map[string]string . 将结果填充到 json.marshal()兼容的对象。输出: [ { "key1": "val1", "key2":
如何在没有根元素的情况下进行编码(marshal)? type Ids struct { Id []string `xml:"id"` } IdsStr, _ := xml.Marshal(&Id
我有这个 C++ 代码: extern "C" __declspec(dllexport) VOID AllocateFoo(MY_DATA_STRUCTURE** foo) { *foo =
我创建了 map[string]interface{} 并且我想通过 2 个重置服务之间的映射传递多种类型。 每次我编码时,我都会在应该包含 reflect.Type 的字段中得到空映射。 Servi
我有一个托管的 .Net 类,它创建了我需要确保正确清理的非托管资源。 我有一个顺序结构: [StructLayout(LayoutKind.Sequential)] struct FooBar {
我在用 val akkaV = "2.2.3" val sprayV = "1.2.0" Seq( "io.spray" % "spray-can" % spra
我正在使用 Castor 编码/取消编码我的 Java 对象,其中一个对象包含一个 EnumMap。Castor 可以编码(marshal)/解封 EnumMaps 吗?我有一个带有一些嵌套 Hash
错误:com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBMappingException:无法编码类型类 [Ljava.lang.Strin
我们在 netbeans 中做了一次 cleanbuild,检查了 jdk 版本并在服务器上部署了所有内容,但仍然出现以下错误。有人可以帮忙吗? javax.servlet.ServletExcept
我想知道是否可以对我的类进行注释,以便编码器第一次遇到对象时,它会生成适当类型的 XML 元素,但任何其他对该对象的后续引用都将具有 XML IDREF条目已创建? 最佳答案 您可以利用 JAXB 的
我正在从现有代码构建一个通用类库,但我收到了一些编译器警告,提示我终其一生都不知道该如何处理。 我有这样的代码: void SomeMethod(Object data) { var size =
我在编码我的 JAXBElement 时遇到了这个异常,它有几个子元素。我如何弄清楚如何查明导致此异常的子元素? java.lang.NullPointerException at com.s
本文整理了Java中org.apache.poi.openxml4j.opc.internal.marshallers.ZipPartMarshaller.marshall()方法的一些代码示例,展示
我最近已经问了一个有关 JAXB 的问题,可以在以下位置找到:How to marshal/unmarshal Java objects with private fields using JAXB
我是一名优秀的程序员,十分优秀!