Archer VanderWaal

Results 2 comments of Archer VanderWaal

公司:美团点评 用途:规则引擎

like this: ``` public static Pair serialize(IGClient client) { byte[] clientBytes = SerializationUtils.serialize(client); byte[] cookieBytes = SerializationUtils.serialize((SerializableCookieJar) client.getHttpClient().cookieJar()); return Pair.of(clientBytes, cookieBytes); } public static IGClient deserialize(Pair bytes) { IGClient client...