Table of contents

Enumeration ImageSourceState

ImageSourceState describes the state of ImageSourceAdapter.

  • Objective-C
  • Swift
typedef NS_ENUM(NSInteger, DSImageSourceState)
{
   /** The buffer of ImageSourceAdapter is temporarily empty. */
   DSImageSourceStateBufferEmpty = 0,
   /** The source of ImageSourceAdapter is empty. */
   DSImageSourceStateExhausted = 1
};
public enum ImageSourceState : Int
{
   /** The buffer of ImageSourceAdapter is temporarily empty. */
   case bufferEmpty = 0
   /** The source of ImageSourceAdapter is empty. */
   case exhausted = 1
};

This page is compatible for: