blob: b1f1fb9fec3e2f1cb6fc32ed09830ab524b5069a [file] [log] [blame]
/*
* Copyright 2018 The Android Open Source Project
*
* 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.
*/
package androidx.room.solver.shortcut.binderprovider
import androidx.room.compiler.processing.XDeclaredType
import androidx.room.processor.Context
import androidx.room.solver.shortcut.binder.InsertMethodBinder
import androidx.room.solver.shortcut.binder.InstantInsertMethodBinder
import androidx.room.vo.ShortcutQueryParameter
/**
* Provider for instant (blocking) insert method binder.
*/
class InstantInsertMethodBinderProvider(private val context: Context) : InsertMethodBinderProvider {
override fun matches(declared: XDeclaredType) = true
override fun provide(
declared: XDeclaredType,
params: List<ShortcutQueryParameter>
): InsertMethodBinder {
return InstantInsertMethodBinder(
context.typeAdapterStore.findInsertAdapter(declared, params)
)
}
}