Skip to content

Instantly share code, notes, and snippets.

View shenfeng's full-sized avatar

Feng Shen shenfeng

View GitHub Profile
(ns just.test
(:require [carbonite.api :as carb])
(:import [java.nio ByteBuffer])
(:import [java.io ObjectOutputStream ByteArrayOutputStream
ByteArrayInputStream ObjectInputStream]))
(defn- serialize [obj]
(let [bao (ByteArrayOutputStream.)
os (ObjectOutputStream. bao)]
(.writeObject os obj)