List of usage examples for com.google.gwt.typedarrays.shared Int8Array length
int length();
From source file:com.koobe.editor.editor.dispatch.SendFileToServerHandler.java
License:Apache License
@Override public SendFileToServerResult execute(SendFileToServerAction action, ExecutionContext context) throws ActionException { Int8Array input = action.getTextToServer(); String response = String.format("length: " + input.length()); return new SendFileToServerResult(response); }