Class LazyMember<T>
- java.lang.Object
-
- microsoft.exchange.webservices.data.core.LazyMember<T>
-
- Type Parameters:
T- Type of the lazy memberIf we find ourselves creating a whole bunch of these in our code, we need to rethink this. Each lazy member holds the actual member and a delegate. That can turn into a whole lot of overhead
public class LazyMember<T> extends Object
Wrapper class for lazy members. Does lazy initialization of member on first access.
-
-
Constructor Summary
Constructors Constructor Description LazyMember(ILazyMember<T> lazyImplementation)Constructor.
-
-
-
Constructor Detail
-
LazyMember
public LazyMember(ILazyMember<T> lazyImplementation)
Constructor.- Parameters:
lazyImplementation- The initialization delegate to call for the item on first access
-
-