blob: 365da10c1f5276af48c1e54181d2e086bdf52da8 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build java android
package services
import (
jgroups "v.io/x/jni/impl/google/services/groups"
jmounttable "v.io/x/jni/impl/google/services/mounttable"
jsyncbase "v.io/x/jni/impl/google/services/syncbase"
_ "v.io/x/jni/impl/google/services/v23_go_runner"
jutil "v.io/x/jni/util"
)
// #include "jni.h"
import "C"
// Init initializes the JNI code with the given Java environment. This method
// must be invoked before any other method in this package and must be called
// from the main Java thread (e.g., On_Load()).
func Init(env jutil.Env) error {
if err := jgroups.Init(env); err != nil {
return err
}
if err := jmounttable.Init(env); err != nil {
return err
}
if err := jsyncbase.Init(env); err != nil {
return err
}
return nil
}