use of com.generallycloud.baseio.container.FixedSession in project baseio by generallycloud.
the class TestRedeploy method main.
public static void main(String[] args) throws Exception {
String serviceKey = "system-redeploy";
String param = "{username:\"admin\",password:\"admin100\"}";
LoggerFactory.configure();
SimpleIoEventHandle eventHandle = new SimpleIoEventHandle();
ServerConfiguration configuration = new ServerConfiguration(8300);
SocketChannelContext context = new NioSocketChannelContext(configuration);
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandle);
context.setProtocolFactory(new ProtobaseProtocolFactory());
context.addSessionEventListener(new LoggerSocketSEListener());
FixedSession session = new FixedSession(connector.connect());
session.login("admin", "admin100");
ProtobaseFuture future = session.request(serviceKey, param);
System.out.println(future.getReadText());
for (int i = 0; i < 0; i++) {
future = session.request(serviceKey, param);
}
CloseUtil.close(connector);
}
use of com.generallycloud.baseio.container.FixedSession in project baseio by generallycloud.
the class TestSimpleBigParam method main.
public static void main(String[] args) throws Exception {
String serviceKey = "TestSimpleServlet";
LoggerFactory.configure();
SimpleIoEventHandle eventHandle = new SimpleIoEventHandle();
ServerConfiguration configuration = new ServerConfiguration(8300);
SocketChannelContext context = new NioSocketChannelContext(configuration);
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandle);
context.setProtocolFactory(new ProtobaseProtocolFactory());
context.addSessionEventListener(new LoggerSocketSEListener());
FixedSession session = new FixedSession(connector.connect());
String temp = "网易科技腾讯科技阿里巴巴";
StringBuilder builder = new StringBuilder(temp);
for (int i = 0; i < 600000; i++) {
builder.append("\n");
builder.append(temp);
}
ProtobaseFuture future = session.request(serviceKey, builder.toString());
FileUtil.writeByCls(TestSimpleBigParam.class.getName(), future.getReadText());
System.out.println("处理完成");
CloseUtil.close(connector);
}
use of com.generallycloud.baseio.container.FixedSession in project baseio by generallycloud.
the class TestPublish method main.
public static void main(String[] args) throws Exception {
LoggerFactory.configure();
SimpleIoEventHandle eventHandle = new SimpleIoEventHandle();
ServerConfiguration configuration = new ServerConfiguration(8300);
SocketChannelContext context = new NioSocketChannelContext(configuration);
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandle);
context.setProtocolFactory(new ParamedProtobaseProtocolFactory());
context.addSessionEventListener(new LoggerSocketSEListener());
FixedSession session = new FixedSession(connector.connect());
session.login("admin", "admin100");
MessageProducer producer = new DefaultMessageProducer(session);
TextMessage message = new TextMessage("msgId", "qName", "你好!");
producer.publish(message);
connector.close();
}
use of com.generallycloud.baseio.container.FixedSession in project baseio by generallycloud.
the class TestSubscribe method test.
private static void test() throws Exception {
LoggerFactory.configure();
SimpleIoEventHandle eventHandle = new SimpleIoEventHandle();
ServerConfiguration configuration = new ServerConfiguration(8300);
SocketChannelContext context = new NioSocketChannelContext(configuration);
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandle);
context.setProtocolFactory(new ProtobaseProtocolFactory());
context.addSessionEventListener(new LoggerSocketSEListener());
FixedSession session = new FixedSession(connector.connect());
session.login("admin", "admin100");
MessageConsumer consumer = new DefaultMessageConsumer(session);
consumer.subscribe(new OnMessage() {
@Override
public void onReceive(Message message) {
System.out.println(message);
}
});
connector.close();
}
use of com.generallycloud.baseio.container.FixedSession in project baseio by generallycloud.
the class TestTeller method main.
public static void main(String[] args) throws Exception {
SimpleIoEventHandle eventHandle = new SimpleIoEventHandle();
SocketChannelContext context = new NioSocketChannelContext(new ServerConfiguration(8300));
SocketChannelConnector connector = new SocketChannelConnector(context);
context.setIoEventHandleAdaptor(eventHandle);
context.setProtocolFactory(new ParamedProtobaseProtocolFactory());
context.addSessionEventListener(new LoggerSocketSEListener());
FixedSession session = new FixedSession(connector.connect());
boolean b = session.login("admin", "admin100");
System.out.println(b);
MessageProducer producer = new DefaultMessageProducer(session);
TextMessage message = new TextMessage("msgId", "uuid", "你好!");
MapMessage mapMessage = new MapMessage("msgId", "uuid");
mapMessage.put("test", "test111111111111111111111");
long old = System.currentTimeMillis();
producer.offer(message);
producer.offer(mapMessage);
System.out.println("Time:" + (System.currentTimeMillis() - old));
connector.close();
}
Aggregations