DbRefResolver<T>

Resolves DbRef objects

interface DbRefResolver<T>
Copyright
2015-2016 Appertly
License
Apache-2.0

Instance Methods

Public
ReturnsSignature and Description
bool
isResolvable(string $ref)

Gets whether or not this class supports the reference type.

?T

Resolves a MongoDB DbRef.

Traversable<T>
resolveAll(Traversable<DbRef> $refs)

Resolves a MongoDB DbRef.

Method Details

isResolvable

abstract public function isResolvable(string $ref)

Gets whether or not this class supports the reference type.

Parameters
NameTypeDescription
$refstring

The reference type (usually a MongoDB collection name)

Returns
TypeDescription
bool

true if the reference type is supported

resolve

abstract public function resolve(DbRef $ref)

Resolves a MongoDB DbRef.

Parameters
NameTypeDescription
$refDbRef

The DbRef to load

Returns
TypeDescription
?T

The loaded entity or null if not found

Throws
TypeConditions
InvalidArgumentException

If $ref is of an unsupported type

Unreachable

If the connection fails

Unretrievable

If the result cannot be retrieved

Generic

If any other database problem occurs

resolveAll

abstract public function resolveAll(Traversable<DbRef> $refs)

Resolves a MongoDB DbRef.

Parameters
NameTypeDescription
$refsTraversable<DbRef>

The DbRefs to load

Returns
TypeDescription
Traversable<T>

The loaded entities

Throws
TypeConditions
InvalidArgumentException

If any $refs are of an unsupported type

Unreachable

If the connection fails

Unretrievable

If the result cannot be retrieved

Generic

If any other database problem occurs