Package org.infinispan.server.websocket.json

Examples of org.infinispan.server.websocket.json.JsonObject


      serverChannel.getJSONPayload();

      //when
      cacheClient.remove("a");
      cacheClient.get("a");
      JsonObject payload = serverChannel.getJSONPayload();

      //then
      assertThat(payload).hasCacheName(CACHE_NAME).hasKey("a").hasValue(null);
   }
View Full Code Here

TOP

Related Classes of org.infinispan.server.websocket.json.JsonObject

Copyright © 2018 www.massapicom. 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.