本文整理匯總了Java中io.vertx.core.buffer.Buffer.getInt方法的典型用法代碼示例。如果您正苦於以下問題:Java Buffer.getInt方法的具體用法?Java Buffer.getInt怎麽用?Java Buffer.getInt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類io.vertx.core.buffer.Buffer
的用法示例。
在下文中一共展示了Buffer.getInt方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: decodeFromWire
import io.vertx.core.buffer.Buffer; //導入方法依賴的package包/類
@Override
public AuthInfo decodeFromWire(int pos, Buffer buffer) {
// My custom message starting from this *position* of buffer
// Length of JSON
int length = buffer.getInt(pos);
// Get JSON string by it`s length
// Jump 4 because getInt() == 4 bytes
String jsonStr = buffer.getString(pos+=4, pos+=length);
JsonObject contentJson = new JsonObject(jsonStr);
// Get fields
String serverName = contentJson.getString("serverName");
String sessionToken = contentJson.getString("sessionToken");
// We can finally create custom message object
return new AuthInfo(serverName, sessionToken);
}
示例2: decodeFromWire
import io.vertx.core.buffer.Buffer; //導入方法依賴的package包/類
@Override
public String[] decodeFromWire(int position, Buffer buffer) {
int pos = position;
int length = buffer.getInt(pos);
// Get JSON string by it`s length
// Jump 4 because getInt() == 4 bytes
String jsonStr = buffer.getString(pos+=4, pos+length);
return Json.decodeValue(jsonStr, String[].class);
}
示例3: decodeFromWire
import io.vertx.core.buffer.Buffer; //導入方法依賴的package包/類
@Override
public PersonName decodeFromWire(int position, Buffer buffer) {
int pos = position;
int length = buffer.getInt(pos);
// Get JSON string by it`s length
// Jump 4 because getInt() == 4 bytes
String jsonStr = buffer.getString(pos+=4, pos+length);
return Json.decodeValue(jsonStr, PersonName.class);
}
示例4: decodeFromWire
import io.vertx.core.buffer.Buffer; //導入方法依賴的package包/類
@Override
public ChatMessage decodeFromWire(int position, Buffer buffer) {
int pos = position;
int length = buffer.getInt(pos);
// Get JSON string by it`s length
// Jump 4 because getInt() == 4 bytes
String jsonStr = buffer.getString(pos+=4, pos+length);
return Json.decodeValue(jsonStr, ChatMessage.class);
}
示例5: readFromBuffer
import io.vertx.core.buffer.Buffer; //導入方法依賴的package包/類
@Override
public int readFromBuffer(int pos, Buffer buffer) {
int posLocal = super.readFromBuffer(pos, buffer);
final int jsonByteCount = buffer.getInt(posLocal);
posLocal += 4;
final byte[] jsonBytes = buffer.getBytes(posLocal, posLocal + jsonByteCount);
posLocal += jsonByteCount;
final String json = new String(jsonBytes, StandardCharsets.UTF_8);
final JsonObject profiles = new JsonObject(json);
final Map<String, CommonProfile> decodedUserProfiles = profiles.stream()
.filter(e -> e.getValue() instanceof JsonObject)
.map(e -> new MappedPair<>(e.getKey(),
(CommonProfile) DefaultJsonConverter.getInstance().decodeObject(e.getValue())))
.collect(toMap(e -> e.key, e -> e.value));
setUserProfiles(decodedUserProfiles);
return posLocal;
}