github.com/alloyzeus/go-azfl@v0.0.0-20231220071816-9740126a2d07/azcore/service_mutating_method.go (about)

     1  package azcore
     2  
     3  //region Mutating method
     4  
     5  // ServiceMutatingMethodMessage abstracts mutating method requests
     6  // and responses.
     7  type ServiceMutatingMethodMessage interface {
     8  	ServiceMethodMessage
     9  
    10  	MutatingMethodContext() ServiceMutatingMethodContext
    11  }
    12  
    13  // ServiceMutatingMethodContext abstracts contexts of mutating
    14  // method requests and responses.
    15  type ServiceMutatingMethodContext interface {
    16  	ServiceMethodContext
    17  }
    18  
    19  //endregion