object Operation extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Operation
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit def OperationMonad: Monad[Operation]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def fail[A](error: Invalid): Operation[A]
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
jsonBody[A](implicit arg0: DecodeJson[A]): Operation[A]
Extract and parse a JSON message from the message body.
-
def
msgAttr[A](name: String)(implicit decode: MessageAttributeDecoder[A]): Operation[A]
Try to extract a value of type A from the message attributes.
Try to extract a value of type A from the message attributes. These are custom attributes that the message sender may have added.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- def ok[A](strict: A): Operation[A]
-
def
stdAttr[A](name: String)(implicit decode: FromString[A]): Operation[A]
Try to extract a value of type A from the 'standard' attributes available for every SQS message e.g.
Try to extract a value of type A from the 'standard' attributes available for every SQS message e.g. approximate first received time, received count, sender ID and sent time.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def withMessage[A](f: (Message) ⇒ A): Operation[A]