SBE is OSI layer 6 presentation for encoding and decoding application messages in binary format for low-latency applications.
Further details on the background and usage of SBE can be found on the Wiki.
An XSD for SBE specs can be found here
License (See LICENSE file for full license)
Copyright 2014 - 2015 Real Logic Limited
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Binaries
Binaries and dependency information for Maven, Ivy, Gradle, and others can be found at http://search.maven.org.
Example for Maven:
<dependency> <groupId>uk.co.real-logic</groupId> <artifactId>sbe</artifactId> <version>1.3-RC3</version> </dependency>
Directory Layout
Main source code
Unit tests
Examples of usage
Build
Full clean build:
Run the Java examples
$ ./gradlew runJavaExamples
Distribution
Jars for the executable, source, and javadoc for the various modules can be found in
C++ Build using CMake
NOTE: Linux, Mac OS, and Windows only for the moment. See FAQ. Windows builds have been tested with Visual Studio Express 12.
First build using gradle to generate the SBE jar.
For convenience, a script is provided that does a full clean, build, and test of all targets as a Release build.
If you are comfortable with using CMake, then a full clean, build, and test looks like:
$ mkdir -p cppbuild/Debug
$ cd cppbuild/Debug
$ cmake ../..
$ cmake --build . --clean-first
$ ctest